From 3377c7ffc565279322b8a2b9b1d3039d1e223ec6 Mon Sep 17 00:00:00 2001 From: Timo Furrer Date: Fri, 13 Oct 2017 16:35:42 +0200 Subject: [PATCH] release: 0.7.2 --- CHANGELOG.md | 7 ++++++- docs/conf.py | 4 ++-- radish/__init__.py | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e8c07a..a4b762aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). *Stay tuned...* +## [v0.7.2] +### Added +- Support bad-case testing for step patterns + ## [v0.7.1] ### Fixed - Allow leading and trailing colon for basepath @@ -129,7 +133,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). Please see `git log` -[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.7.1...HEAD +[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.7.2...HEAD +[v0.7.2]: https://github.com/radish-bdd/radish/compare/v0.7.1...v0.7.2 [v0.7.1]: https://github.com/radish-bdd/radish/compare/v0.7.0...v0.7.1 [v0.7.0]: https://github.com/radish-bdd/radish/compare/v0.6.8...v0.7.0 [v0.6.8]: https://github.com/radish-bdd/radish/compare/v0.6.7...v0.6.8 diff --git a/docs/conf.py b/docs/conf.py index a0781cec..de7ee3cf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '0.7.1' +version = '0.7.2' # The full version, including alpha/beta/rc tags. -release = '0.7.1' +release = '0.7.2' # 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 dc5a2cc9..01c028ed 100644 --- a/radish/__init__.py +++ b/radish/__init__.py @@ -2,7 +2,7 @@ __DESCRIPTION__ = "Behaviour-Driven-Development tool for python" __LICENSE__ = "MIT" -__VERSION__ = "0.7.1" +__VERSION__ = "0.7.2" __AUTHOR__ = "Timo Furrer" __AUTHOR_EMAIL__ = "tuxtimo@gmail.com" __URL__ = "http://radish-bdd.io"