From c069cf5f88a33745a239158370c4ac1371ce0612 Mon Sep 17 00:00:00 2001 From: fliiiix Date: Sun, 5 Nov 2023 11:29:59 +0100 Subject: [PATCH] release: v0.17.1 --- CHANGELOG.md | 10 +++++++++- docs/conf.py | 4 ++-- radish/__init__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fd1dffe..d517a1de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Stay tuned...* +## [v0.17.1] + +### Fixed +- Fixed Tags in ExampleScenarios +- Fixed Tags in LoopScenarios +- Updated readthedocs configuration + ## [v0.17.0] ### Changes @@ -293,7 +300,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Please see `git log` -[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.17.0...HEAD +[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.17.1...HEAD +[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 [v0.16.2]: https://github.com/radish-bdd/radish/compare/v0.16.1...v0.16.2 [v0.16.1]: https://github.com/radish-bdd/radish/compare/v0.16.0...v0.16.1 diff --git a/docs/conf.py b/docs/conf.py index ce4e12db..e9f56d86 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '0.17.0' +version = '0.17.1' # The full version, including alpha/beta/rc tags. -release = '0.17.0' +release = '0.17.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 c8ce695f..e9b154bc 100644 --- a/radish/__init__.py +++ b/radish/__init__.py @@ -2,7 +2,7 @@ __DESCRIPTION__ = "Behaviour-Driven-Development tool for Python" __LICENSE__ = "MIT" -__VERSION__ = "0.17.0" +__VERSION__ = "0.17.1" __AUTHOR__ = "Timo Furrer" __AUTHOR_EMAIL__ = "tuxtimo+radish@gmail.com" __URL__ = "https://radish-bdd.github.io"