From 21bac7561796fc91a8cec4171b85e88e45c6ac88 Mon Sep 17 00:00:00 2001 From: fliiiix Date: Fri, 13 Oct 2023 09:15:16 +0200 Subject: [PATCH] release: v0.17.0 --- CHANGELOG.md | 11 +++++++++-- docs/conf.py | 4 ++-- radish/__init__.py | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af2055b4..0fd1dffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Stay tuned...* +## [v0.17.0] + +### Changes +- Can now filter scenarios and features by tags with values ex: @author(tuxtimo), thanks @inquisitev + ### Fixed -- Can now filter scenarios and features by tags with values ex: @author(tuxtimo) +- Test support for Python 3.12 +- Fixed split\_unescape, thanks @ajratnam ## [v0.16.2] @@ -287,7 +293,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Please see `git log` -[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.16.2...HEAD +[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.17.0...HEAD +[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 [v0.16.0]: https://github.com/radish-bdd/radish/compare/v0.15.0...v0.16.0 diff --git a/docs/conf.py b/docs/conf.py index bd57951c..ce4e12db 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '0.16.2' +version = '0.17.0' # The full version, including alpha/beta/rc tags. -release = '0.16.2' +release = '0.17.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 70f36a4b..c8ce695f 100644 --- a/radish/__init__.py +++ b/radish/__init__.py @@ -2,7 +2,7 @@ __DESCRIPTION__ = "Behaviour-Driven-Development tool for Python" __LICENSE__ = "MIT" -__VERSION__ = "0.16.2" +__VERSION__ = "0.17.0" __AUTHOR__ = "Timo Furrer" __AUTHOR_EMAIL__ = "tuxtimo+radish@gmail.com" __URL__ = "https://radish-bdd.github.io"