diff --git a/CHANGELOG.md b/CHANGELOG.md index d066bd6..4ac9f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] + + +## [0.2.0] - 2016-03-28 +### Added +- Added [include](https://github.com/andras-tim/octoconf/blob/v0.2.0/docs/features.rst#includes) feature + ### Changed -- Replaced ``octoconf.read()`` function with ``octoconf.load()`` and ``octoconf.loads()`` for +- Replaced `octoconf.read()` function with `octoconf.load()` and `octoconf.loads()` for better fit to the standards. -- Pylint ready code +- Improved code quality (added some error handlers and tests was rewritten, Pylint ready code) ## 0.1.0 - 2016-03-23 @@ -16,4 +22,5 @@ This project adheres to [Semantic Versioning](http://semver.org/). - example YAML file -[unreleased]: https://github.com/andras-tim/octoconf/compare/v0.1.0...HEAD +[unreleased]: https://github.com/andras-tim/octoconf/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/andras-tim/octoconf/compare/v0.1.0...v0.2.0 diff --git a/setup.py b/setup.py index a5bcbdc..c08c843 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def read(*path): setup( name='octoconf', - version='0.1.0', + version='0.2.0', url='https://github.com/andras-tim/octoconf', bugtrack_url='https://github.com/andras-tim/octoconf/issues', license='GPLv3',