diff --git a/CHANGELOG.md b/CHANGELOG.md index 6728baa4..f159125f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Stay tuned...* +## [v0.18.1] + +### Changes +- Fix sphinx docs build +- Normalize project name +- Automatic deployment from github + ## [v0.18.0] ### Fixed @@ -311,7 +318,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Please see `git log` -[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.18.0...HEAD +[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.18.1...HEAD +[v0.18.1]: https://github.com/radish-bdd/radish/compare/v0.18.0...v0.18.1 [v0.18.0]: https://github.com/radish-bdd/radish/compare/v0.17.1...v0.18.0 [v0.17.1]: https://github.com/radish-bdd/radish/compare/v0.17.0...v0.17.1 [v0.17.0]: https://github.com/radish-bdd/radish/compare/v0.16.2...v0.17.0 diff --git a/docs/conf.py b/docs/conf.py index 45d80117..b0a68148 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '0.18.0' +version = '0.18.1' # The full version, including alpha/beta/rc tags. -release = '0.18.0' +release = '0.18.1' # 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 ecfacb08..0bc2290c 100644 --- a/radish/__init__.py +++ b/radish/__init__.py @@ -1,6 +1,6 @@ __DESCRIPTION__ = "Behaviour-Driven-Development tool for Python" __LICENSE__ = "MIT" -__VERSION__ = "0.18.0" +__VERSION__ = "0.18.1" __AUTHOR__ = "Timo Furrer" __AUTHOR_EMAIL__ = "tuxtimo+radish@gmail.com" __URL__ = "https://radish-bdd.github.io"