Skip to content

Commit 4f0a55b

Browse files
committed
release: 0.3.4
1 parent d898211 commit 4f0a55b

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
*Nothing here yet.*
88

9+
## [v0.3.4]
10+
11+
### Added
12+
- Implement Colorful.print() method
13+
- Support env variable to point to local rgb.txt file
14+
915
## [v0.3.3]
1016

1117
This release is just to fix the PyPI project page.
1218

1319
## [v.0.3.2]
1420

1521
### Added
16-
1722
- Support for styling objects which implement the `str()` protocol
1823

1924
## [v0.3.1]
2025

2126
### Added
22-
2327
- Correctly support `len()`
2428
- Support nesting styles
2529
- Improved documentation
@@ -28,7 +32,8 @@ This release is just to fix the PyPI project page.
2832

2933
- Initial release
3034

31-
[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.3.3...HEAD
35+
[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.3.4...HEAD
36+
[v0.3.4]: https://github.com/timofurrer/colorful/compare/v0.3.3...v0.3.4
3237
[v0.3.3]: https://github.com/timofurrer/colorful/compare/v0.3.2...v0.3.3
3338
[v0.3.2]: https://github.com/timofurrer/colorful/compare/v0.3.1...v0.3.2
3439
[v0.3.1]: https://github.com/timofurrer/colorful/compare/v0.3.0...v0.3.1

colorful/__init__.py

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

2222
#: Holds the current version
23-
__version__ = '0.3.3'
23+
__version__ = '0.3.4'
2424

2525

2626
class ColorfulModule(types.ModuleType):

0 commit comments

Comments
 (0)