diff --git a/CHANGELOG.md b/CHANGELOG.md index da9e513..902d5f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.2.2] - 2016-10-02 +### Fixed +- Important fix. Setup.py was missing `include_package_data` flag. + + +## [0.2.1] - 2016-10-02 +### Fixed +- Configuration wasn't being updated. Fixed. + + +## [0.2.0] - 2016-10-02 +### Added +- Helpers funcs: hues.log, hues.error etc. +- Powerline-ish theme! +- Sane, new API. + +### Changed +- Added multiple API enhancements. Particularly, enabling shortcut functions. +- Reduced the complexity of the `console` class. +- Configuration is stored in a `.hues.yml` file. + + ## [0.1.1] - 2016-09-10 ### Fixed - Missing `MANIFEST.in` caused pip builds to fail.. @@ -30,7 +52,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Project skeleton. -[Unreleased]: https://github.com/prashnts/hues/compare/0.1.0...HEAD +[UNRELEASED]: https://github.com/prashnts/hues/compare/0.2.1...HEAD +[0.2.2]: https://github.com/prashnts/hues/compare/0.2.1...0.2.2 +[0.2.1]: https://github.com/prashnts/hues/compare/0.2.0...0.2.1 +[0.2.0]: https://github.com/prashnts/hues/compare/0.1.1...0.2.0 [0.1.1]: https://github.com/prashnts/hues/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/prashnts/hues/compare/0.0.1...0.1.0 diff --git a/hues/__init__.py b/hues/__init__.py index 1dcfdbd..b83381f 100644 --- a/hues/__init__.py +++ b/hues/__init__.py @@ -2,7 +2,7 @@ from .huestr import HueString as huestr from .console import Config, SimpleConsole, PowerlineConsole -__version__ = (0, 2, 1) +__version__ = (0, 2, 2) conf = Config() diff --git a/setup.py b/setup.py index 718c198..aa7d5d8 100644 --- a/setup.py +++ b/setup.py @@ -40,11 +40,12 @@ 'Programming Language :: Python :: 3.4', 'Topic :: Software Development :: Libraries :: Python Modules' ], - keywords='color colour terminal text ansi hues unicorns', + keywords='color colour terminal text ansi hues unicorns console', packages=['hues'], author='Prashant Sinha', install_requires=install_requires, setup_requires=setup_requires, tests_require=test_requirements, - author_email='prashant@noop.pw' + author_email='prashant@noop.pw', + include_package_data=True, )