diff --git a/CHANGELOG.md b/CHANGELOG.md index ca9f459..b2ab762 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Nothing here yet.* +## [v0.5.4] +## Fixed +- `__getattr__` protocol implementation + ## [v0.5.3] ## Fixed - Support equals protocol for ColorfulStyle objects @@ -112,7 +116,8 @@ This release is just to fix the PyPI project page. - Initial release -[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.5.3...HEAD +[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.5.4...HEAD +[v0.5.4]: https://github.com/timofurrer/colorful/compare/v0.5.3...v0.5.4 [v0.5.3]: https://github.com/timofurrer/colorful/compare/v0.5.2...v0.5.3 [v0.5.2]: https://github.com/timofurrer/colorful/compare/v0.5.1...v0.5.2 [v0.5.1]: https://github.com/timofurrer/colorful/compare/v0.5.0...v0.5.1 diff --git a/colorful/__init__.py b/colorful/__init__.py index b45d377..94c5b73 100644 --- a/colorful/__init__.py +++ b/colorful/__init__.py @@ -21,7 +21,7 @@ from . import terminal #: Holds the current version -__version__ = '0.5.3' +__version__ = '0.5.4' # if we are on Windows we have to init colorama if platform.system() == 'Windows':