Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich Leland committed Nov 6, 2015
1 parent d5b4242 commit 8154d3a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
18 changes: 9 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased][unreleased]
- No notable updates

## [1.0.0] - 2015-11-06
### Added
- Django email backend
- Support for scheduled sending via the `start_time` parameter in `Transmissions`
- Support for marking messages as transactional or non-transactional via the `transactional` parameter in `Transmissions`
- Support for skipping suppression (SparkPost Elite only) via the `skip_suppression` parameter in `Transmissions`

## [1.0.0.dev2] - 2015-09-01
### Added
- Code coverage via [coveralls]
Expand All @@ -31,14 +38,7 @@ 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.dev2...HEAD
[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
[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


Added for new features.
Changed for changes in existing functionality.
Deprecated for once-stable features removed in upcoming releases.
Removed for deprecated features removed in this release.
Fixed for any bug fixes.
Security
6 changes: 0 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ Install from PyPI using `pip`_:
.. _pip: http://www.pip-installer.org/en/latest/

To install a pre-release version (dev, alpha, beta, rc):

.. code-block:: bash
$ pip install --pre sparkpost
.. _pip: http://www.pip-installer.org/en/latest/


Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.0.dev2'
release = '1.0.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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='sparkpost',
version='1.0.0.dev2',
version='1.0.0',
author='Message Systems',
author_email='appteam@messagesystems.com',
packages=['sparkpost'],
Expand Down
2 changes: 1 addition & 1 deletion sparkpost/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .transmissions import Transmissions


__version__ = '1.0.0.dev2'
__version__ = '1.0.0'


def get_api_key():
Expand Down

0 comments on commit 8154d3a

Please sign in to comment.