Skip to content

Commit

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

*Stay tuned...*

## [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 @@ -154,7 +159,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

Please see `git log`

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

# 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.3"
__VERSION__ = "0.8.4"
__AUTHOR__ = "Timo Furrer"
__AUTHOR_EMAIL__ = "tuxtimo@gmail.com"
__URL__ = "http://radish-bdd.io"
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def get_meta(name):

__META_FILE__ = os.path.join('radish', '__init__.py')
__META_DATA__ = read_metafile(__META_FILE__)
__README_CONTENTS__ = read_metafile('README.md')


# mandatory requirements for the radish base features
Expand Down Expand Up @@ -62,6 +63,7 @@ def get_meta(name):
version=get_meta('version'),
license=get_meta('license'),
description=get_meta('description'),
long_description=__README_CONTENTS__,
author=get_meta('author'),
author_email=get_meta('author_email'),
maintainer=get_meta('author'),
Expand Down

0 comments on commit 7ac1354

Please sign in to comment.