Skip to content

Commit

Permalink
release: 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Apr 16, 2018
1 parent 7ac1354 commit 6801309
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).

*Stay tuned...*

## [v0.8.5]

- Fix markdown for PyPI

## [v0.8.4]

- Use markdown for setuptools long description


## [v0.8.3]
### Added
- Implement `use_repr` flag to use repr protocol for argument value testing
Expand Down Expand Up @@ -159,7 +162,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

Please see `git log`

[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.8.4...HEAD
[Unreleased]: https://github.com/radish-bdd/radish/compare/v0.8.5...HEAD
[v0.8.5]: https://github.com/radish-bdd/radish/compare/v0.8.4...v0.8.5
[v0.8.4]: https://github.com/radish-bdd/radish/compare/v0.8.3...v0.8.4
[v0.8.3]: https://github.com/radish-bdd/radish/compare/v0.8.2...v0.8.3
[v0.8.2]: https://github.com/radish-bdd/radish/compare/v0.8.1...v0.8.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.8.4'
version = '0.8.5'
# The full version, including alpha/beta/rc tags.
release = '0.8.4'
release = '0.8.5'

# 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.8.4"
__VERSION__ = "0.8.5"
__AUTHOR__ = "Timo Furrer"
__AUTHOR_EMAIL__ = "tuxtimo@gmail.com"
__URL__ = "http://radish-bdd.io"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def get_meta(name):
license=get_meta('license'),
description=get_meta('description'),
long_description=__README_CONTENTS__,
long_description_content_type='text/markdown',
author=get_meta('author'),
author_email=get_meta('author_email'),
maintainer=get_meta('author'),
Expand Down

0 comments on commit 6801309

Please sign in to comment.