From 32eeb20ac63c3a9251642288be22babb9869c86b Mon Sep 17 00:00:00 2001 From: fliiiix Date: Sun, 4 Dec 2022 14:47:35 +0100 Subject: [PATCH] release: 0.5.5 --- CHANGELOG.md | 10 +++++++++- colorful/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ab762..8fa1510 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Nothing here yet.* +## [v0.5.5] +## Fixed +- Fix `setup(colormode=NO_COLORS)` +- Fix correctnes of `__str__` to return always a str +- Drop Python 2 support +- Test Python 3.5 - Python 3.11 + ## [v0.5.4] ## Fixed - `__getattr__` protocol implementation @@ -116,7 +123,8 @@ This release is just to fix the PyPI project page. - Initial release -[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.5.4...HEAD +[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.5.5...HEAD +[v0.5.5]: https://github.com/timofurrer/colorful/compare/v0.5.4...v0.5.5 [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 diff --git a/colorful/__init__.py b/colorful/__init__.py index 94c5b73..de0eb6d 100644 --- a/colorful/__init__.py +++ b/colorful/__init__.py @@ -21,7 +21,7 @@ from . import terminal #: Holds the current version -__version__ = '0.5.4' +__version__ = '0.5.5' # if we are on Windows we have to init colorama if platform.system() == 'Windows':