Skip to content

Commit 32eeb20

Browse files
committed
release: 0.5.5
1 parent 1ab92f7 commit 32eeb20

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
*Nothing here yet.*
88

9+
## [v0.5.5]
10+
## Fixed
11+
- Fix `setup(colormode=NO_COLORS)`
12+
- Fix correctnes of `__str__` to return always a str
13+
- Drop Python 2 support
14+
- Test Python 3.5 - Python 3.11
15+
916
## [v0.5.4]
1017
## Fixed
1118
- `__getattr__` protocol implementation
@@ -116,7 +123,8 @@ This release is just to fix the PyPI project page.
116123

117124
- Initial release
118125

119-
[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.5.4...HEAD
126+
[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.5.5...HEAD
127+
[v0.5.5]: https://github.com/timofurrer/colorful/compare/v0.5.4...v0.5.5
120128
[v0.5.4]: https://github.com/timofurrer/colorful/compare/v0.5.3...v0.5.4
121129
[v0.5.3]: https://github.com/timofurrer/colorful/compare/v0.5.2...v0.5.3
122130
[v0.5.2]: https://github.com/timofurrer/colorful/compare/v0.5.1...v0.5.2

colorful/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from . import terminal
2222

2323
#: Holds the current version
24-
__version__ = '0.5.4'
24+
__version__ = '0.5.5'
2525

2626
# if we are on Windows we have to init colorama
2727
if platform.system() == 'Windows':

0 commit comments

Comments
 (0)