Skip to content

Commit

Permalink
release: v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fliiiix committed Dec 4, 2022
1 parent 09dbefb commit e5eaf08
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).

*Stay tuned...*

## [v0.14.0]
### Changes

- Drop Python 2.7 and Python 3.4
- Switched to colorful 0.5.4 (slightly different output rendering)
- Switch and fix CI to run on GitHub Actions
- Test support for new Python versions 3.9, 3.10
- Fix warnings unknown escape strings, wrong comparison
- Use latests dependencies available on Python3.5

## [v0.13.4]
### Fixed

- Parse -s/--scenarios with = signe correctly
- Parse -s/--scenarios with = sign correctly
- Fix radish matcher print
- Update Background example in docs

Expand Down Expand Up @@ -236,7 +246,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

Please see `git log`

[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.13.4...HEAD
[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.14.0...HEAD
[v0.14.0]: https://github.com/radish-bdd/radish/compare/v0.13.4...v0.14.0
[v0.13.4]: https://github.com/radish-bdd/radish/compare/v0.13.3...v0.13.4
[v0.13.3]: https://github.com/radish-bdd/radish/compare/v0.13.2...v0.13.3
[v0.13.2]: https://github.com/radish-bdd/radish/compare/v0.13.1...v0.13.2
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.13.4'
version = '0.14.0'
# The full version, including alpha/beta/rc tags.
release = '0.13.4'
release = '0.14.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion radish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__DESCRIPTION__ = "Behaviour-Driven-Development tool for python"
__LICENSE__ = "MIT"
__VERSION__ = "0.13.4"
__VERSION__ = "0.14.0"
__AUTHOR__ = "Timo Furrer"
__AUTHOR_EMAIL__ = "[email protected]"
__URL__ = "http://radish-bdd.io"
Expand Down

0 comments on commit e5eaf08

Please sign in to comment.