Skip to content

Commit 39ea0b1

Browse files
committed
release: 0.3.5
1 parent 82ff8d0 commit 39ea0b1

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

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

77
*Nothing here yet.*
88

9+
## [v0.3.5]
10+
11+
### Added
12+
- Support for Windows using colorama
13+
914
## [v0.3.4]
1015

1116
### Added
@@ -32,7 +37,8 @@ This release is just to fix the PyPI project page.
3237

3338
- Initial release
3439

35-
[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.3.4...HEAD
40+
[Unreleased]: https://github.com/timofurrer/colorful/compare/v0.3.5...HEAD
41+
[v0.3.5]: https://github.com/timofurrer/colorful/compare/v0.3.4...v0.3.5
3642
[v0.3.4]: https://github.com/timofurrer/colorful/compare/v0.3.3...v0.3.4
3743
[v0.3.3]: https://github.com/timofurrer/colorful/compare/v0.3.2...v0.3.3
3844
[v0.3.2]: https://github.com/timofurrer/colorful/compare/v0.3.1...v0.3.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ print(colorful.yellow('yellow'), colorful.orange('orange'),
3838
colorful.red('red'), colorful.magenta('magenta'),
3939
colorful.violet('violet'), colorful.blue('blue'),
4040
colorful.cyan('cyan'), colorful.green('green'))
41-
41+
4242
# directly print with colors
4343
colorful.print('{c.bold_blue}Hello World{c.reset}')
4444

@@ -62,7 +62,7 @@ with colorful.with_palette(my_company_palette) as c:
6262
* support for predefined awesome styles (solarized, ...) ([docs](#styles))
6363
* support for custom color palettes ([docs](#color-palette))
6464
* support nesting styles ([docs](#nesting-styles))
65-
* support for different platforms (using colorama on windows, *needs verification*)
65+
* support for different platforms (using colorama on Windows)
6666
* context managers for clean color mode, color palette or style switch ([docs](#temporarily-change-colorful-settings))
6767
* support `len()` on colored strings ([docs](#correctly-support-the-len-protocol))
6868
* support color names from [X11 rgb.txt](https://en.wikipedia.org/wiki/X11_color_names) ([docs](#1-style-a-string-with-a-method-call-colorfulmodifiers_fgcolor_on_bgcolorstr-nestedfalse))

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.3.4'
24+
__version__ = '0.3.5'
2525

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

0 commit comments

Comments
 (0)