Skip to content

Commit 8154d3a

Browse files
author
Rich Leland
committed
Bump version, update changelog
1 parent d5b4242 commit 8154d3a

File tree

5 files changed

+12
-18
lines changed

5 files changed

+12
-18
lines changed

CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## [Unreleased][unreleased]
66
- No notable updates
77

8+
## [1.0.0] - 2015-11-06
9+
### Added
10+
- Django email backend
11+
- Support for scheduled sending via the `start_time` parameter in `Transmissions`
12+
- Support for marking messages as transactional or non-transactional via the `transactional` parameter in `Transmissions`
13+
- Support for skipping suppression (SparkPost Elite only) via the `skip_suppression` parameter in `Transmissions`
14+
815
## [1.0.0.dev2] - 2015-09-01
916
### Added
1017
- Code coverage via [coveralls]
@@ -31,14 +38,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3138
- Metrics class for getting a list of campaigns and domains
3239
- Docs on readthedocs.org
3340

34-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0.dev2...HEAD
41+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0...HEAD
42+
[1.0.0]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0.dev2...1.0.0
3543
[1.0.0.dev2]: https://github.com/sparkpost/python-sparkpost/compare/1.0.0.dev1...1.0.0.dev2
3644
[coveralls]: https://coveralls.io/github/SparkPost/python-sparkpost
37-
38-
39-
Added for new features.
40-
Changed for changes in existing functionality.
41-
Deprecated for once-stable features removed in upcoming releases.
42-
Removed for deprecated features removed in this release.
43-
Fixed for any bug fixes.
44-
Security

README.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ Install from PyPI using `pip`_:
3636
3737
.. _pip: http://www.pip-installer.org/en/latest/
3838

39-
To install a pre-release version (dev, alpha, beta, rc):
40-
41-
.. code-block:: bash
42-
43-
$ pip install --pre sparkpost
44-
4539
.. _pip: http://www.pip-installer.org/en/latest/
4640

4741

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '1.0'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '1.0.0.dev2'
61+
release = '1.0.0'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='sparkpost',
9-
version='1.0.0.dev2',
9+
version='1.0.0',
1010
author='Message Systems',
1111
author_email='[email protected]',
1212
packages=['sparkpost'],

sparkpost/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .transmissions import Transmissions
99

1010

11-
__version__ = '1.0.0.dev2'
11+
__version__ = '1.0.0'
1212

1313

1414
def get_api_key():

0 commit comments

Comments
 (0)