diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f4de8..1d8031e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] - No notable updates +## [1.0.1] - 2016-02-25 +### Fixed +- Subpackages now get included properly +- Updated examples to use plural `transmissions` + ## [1.0.0] - 2015-11-06 ### Added - Django email backend @@ -38,7 +43,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Metrics class for getting a list of campaigns and domains - Docs on readthedocs.org -[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0...HEAD -[1.0.0]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0.dev2...1.0.0 +[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.1...HEAD +[1.0.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.0...v1.0.1 +[1.0.0]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0.dev2...v1.0.0 [1.0.0.dev2]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0.dev1...1.0.0.dev2 [coveralls]: https://coveralls.io/github/SparkPost/python-sparkpost diff --git a/docs/conf.py b/docs/conf.py index ded98a8..78d1e4b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2bca554..9229e47 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='sparkpost', - version='1.0.1.dev1', + version='1.0.1', author='Message Systems', author_email='appteam@messagesystems.com', packages=find_packages(), diff --git a/sparkpost/__init__.py b/sparkpost/__init__.py index 24211f8..05a591d 100644 --- a/sparkpost/__init__.py +++ b/sparkpost/__init__.py @@ -8,7 +8,7 @@ from .transmissions import Transmissions -__version__ = '1.0.0' +__version__ = '1.0.1' def get_api_key():