diff --git a/CHANGELOG.md b/CHANGELOG.md index dffc7470..d0717d0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Stay tuned...* +## [v0.9.0] + +- Implemented `--wip` feature. +- Implemented basics for formatters +- Implemented `gherkin` and `dots` formatters. + ## [v0.8.6] - Fix markdown for PyPI @@ -166,7 +172,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Please see `git log` -[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.8.6...HEAD +[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.9.0...HEAD +[v0.9.0]: https://github.com/radish-bdd/radish/compare/v0.8.6...v0.9.0 [v0.8.6]: https://github.com/radish-bdd/radish/compare/v0.8.5...v0.8.6 [v0.8.5]: https://github.com/radish-bdd/radish/compare/v0.8.4...v0.8.5 [v0.8.4]: https://github.com/radish-bdd/radish/compare/v0.8.3...v0.8.4 diff --git a/docs/conf.py b/docs/conf.py index 9cc5c963..8e66f1d1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '0.8.6' +version = '0.9.0' # The full version, including alpha/beta/rc tags. -release = '0.8.6' +release = '0.9.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/radish/__init__.py b/radish/__init__.py index 9c903756..2840eba2 100644 --- a/radish/__init__.py +++ b/radish/__init__.py @@ -2,7 +2,7 @@ __DESCRIPTION__ = "Behaviour-Driven-Development tool for python" __LICENSE__ = "MIT" -__VERSION__ = "0.8.6" +__VERSION__ = "0.9.0" __AUTHOR__ = "Timo Furrer" __AUTHOR_EMAIL__ = "tuxtimo@gmail.com" __URL__ = "http://radish-bdd.io"