Skip to content

chore(main): release 0.3.0 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Changelog

## 0.3.0 (2025-04-16)


### ⚠ BREAKING CHANGES

* Rename 'columns' to 'templates' in rendering functions for clarity

### Features

* Add and support `polars` DataFrame and Series ([033e2ed](https://github.com/nok/pandas-render/commit/033e2ed2a6846b94629f0527ae0c082c1c662d4a))
* Add CLI command `pandas serve` for serving local files ([22df404](https://github.com/nok/pandas-render/commit/22df40499b97b183771e3a7e71acd9d66cca38fe))
* Add custom column names for rendered dataframes ([7406f68](https://github.com/nok/pandas-render/commit/7406f688c88022c6de8770f756305b32852a0f6b))
* Add examples ([258e92f](https://github.com/nok/pandas-render/commit/258e92f700fa27be92dce7dccfa1277bc34d8846))
* Add gallery rendering feature for DataFrames ([489c27e](https://github.com/nok/pandas-render/commit/489c27ea91381c255db7f46ee623d15e65a795d6))
* Add GitHub workflows for release and testing automation ([653ba4f](https://github.com/nok/pandas-render/commit/653ba4f6b96174a6cc54de14403bb3d95f403eb2))
* Add Makefile for linting, testing, and setup tasks ([9f88e56](https://github.com/nok/pandas-render/commit/9f88e56c2f23db44066cdc7f92b90459c4f633d3))
* Add option to hide table header ([42236be](https://github.com/nok/pandas-render/commit/42236be39e03512ec7ca5312fd3820a8490bf3d2))
* Enhance Image and Link elements with default attributes ([d846a07](https://github.com/nok/pandas-render/commit/d846a072aafc9f545480e9169753916a9dc779f5))
* Improve column order logic ([4037e76](https://github.com/nok/pandas-render/commit/4037e7635439b3e6f8730dcbfd3e58e51a1d728a))


### Bug Fixes

* Add missing dependencies ([88314c8](https://github.com/nok/pandas-render/commit/88314c8551031533fa503a3c6380cda0b02fdad0))
* Ease versions of dependencies (main) ([42721ae](https://github.com/nok/pandas-render/commit/42721ae852b11d1d4cdfb543a08867dcfe9cffa8))
* Update version number in tests to match current release ([bd9183f](https://github.com/nok/pandas-render/commit/bd9183f68d4adfebf6e9e5bc88caef247989c3ec))


### Documentation

* Add contributing guidelines and restructure development section in README ([8e9517c](https://github.com/nok/pandas-render/commit/8e9517c774d55e9b96d47505ec3388d2877e1f78))
* Add funding configuration ([b973af4](https://github.com/nok/pandas-render/commit/b973af4df10a9cbf77887d1808e98b8165a6b370))
* Add note on following Conventional Commits standard ([3d97b40](https://github.com/nok/pandas-render/commit/3d97b403d703cd2c450b527c90b86a306bc5b106))
* Adjust image height in README for better display ([43c3776](https://github.com/nok/pandas-render/commit/43c377610cc1e5db1720adb9eb3c0fbf567f84b8))
* Enhance README and examples ([5b1502e](https://github.com/nok/pandas-render/commit/5b1502e001e332f87bf684176bb3f91a6897847f))
* Fix links in README for contributing guidelines and license ([a734694](https://github.com/nok/pandas-render/commit/a734694f8f1fc69fc14b93121deb72d7a4962242))
* Update badge links for clarity and consistency ([25511ba](https://github.com/nok/pandas-render/commit/25511ba74faee3ae1a9a747a37f688a8d5b97ae8))
* Update README to include development instructions and uv package management ([721c331](https://github.com/nok/pandas-render/commit/721c33129e87dca4f96efcd5285833c9ffa6d278))
* Update README with enhanced description and add logo image ([a00e6cb](https://github.com/nok/pandas-render/commit/a00e6cbe2eb8fe859a88f489d83eae6303d30692))


### Miscellaneous Chores

* Release 0.3.0 ([67dc2a7](https://github.com/nok/pandas-render/commit/67dc2a795fe708bdf3ad565204bd213f3c37bf9c))


### Code Refactoring

* Rename 'columns' to 'templates' in rendering functions for clarity ([5f0dbe8](https://github.com/nok/pandas-render/commit/5f0dbe85f52ed79788a04c3c3d5db4cbc6c7f81f))
2 changes: 1 addition & 1 deletion pandas_render/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ def _extend(package: Union["pandas", "polars"]):
else:
_extend(polars)

__version__ = "0.2.1"
__version__ = "0.3.0"