diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a743a..f4897ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0.1] - 2019-10-12 ### Added - This `CHANGELOG.md` file, for documenting notable changes. @@ -34,5 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The Podcast and Episode classes for easily generating a podcast out of data, and related utilities and classes. -[Unreleased]: https://github.com/tobinus/python-podgen/compare/v1.0.0...develop +[Unreleased]: https://github.com/tobinus/python-podgen/compare/v1.0.1...develop +[1.0.1]: https://github.com/tobinus/python-podgen/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/tobinus/python-podgen/compare/290045ac...v1.0.0 diff --git a/podgen/version.py b/podgen/version.py index 1748128..19840cf 100644 --- a/podgen/version.py +++ b/podgen/version.py @@ -14,7 +14,7 @@ from builtins import * 'Version of python-podgen represented as tuple' -version = (1, 0, '1b1') +version = (1, 0, 1) 'Version of python-podgen represented as string' diff --git a/setup.py b/setup.py index d843bfb..e5f3719 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ name = 'podgen', packages = ['podgen'], # Remember to update the version in podgen.version, too! - version = '1.0.1b1', + version = '1.0.1', description = 'Generating podcasts with Python should be easy!', author = 'Thorben W. S. Dahl', author_email = 'thorben@sjostrom.no',