Skip to content

Commit d349540

Browse files
authored
Bump version, update changelog
1 parent 9554154 commit d349540

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## Unreleased
66
- [Compare to latest release][unreleased]
77

8+
## [1.3.0] - 2016-10-01
9+
### Added
10+
- [#121](https://github.com/SparkPost/python-sparkpost/pull/121) Added extended error code to `SparkPostAPIException` class
11+
- [#124](https://github.com/SparkPost/python-sparkpost/pull/124) Added `delete` method to `Transmission` class
12+
- CI tests now also run against Python 3.5
13+
14+
### Changed
15+
- [#123](https://github.com/SparkPost/python-sparkpost/pull/123) Updated RequestsTransport to use a requests session so HTTP Keep Alive is honored
16+
17+
### Fixed
18+
- [#115](https://github.com/SparkPost/python-sparkpost/pull/115) Guess attachment mimetype in Django email backend if not provided
19+
820
## [1.2.0] - 2016-04-19
921
### Added
1022
- [#109](https://github.com/SparkPost/python-sparkpost/pull/109) Support for specifying `template`, `substitution_data` when using the Django email backend
@@ -86,7 +98,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8698
- Metrics class for getting a list of campaigns and domains
8799
- Docs on readthedocs.org
88100

89-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...HEAD
101+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...HEAD
102+
[1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0
90103
[1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.1...v1.2.0
91104
[1.1.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...v1.1.1
92105
[1.1.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.0

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '1.2'
61+
version = '1.3'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.2.0'
63+
release = '1.3.0'
6464

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

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='sparkpost',
9-
version='1.2.0',
9+
version='1.3.0',
1010
author='SparkPost',
1111
author_email='[email protected]',
1212
packages=find_packages(),
@@ -16,13 +16,14 @@
1616
long_description=readme,
1717
install_requires=['requests>=2.5.1'],
1818
classifiers=[
19-
'Development Status :: 1 - Planning',
19+
'Development Status :: 5 - Production/Stable',
2020
'Intended Audience :: Developers',
2121
'Topic :: Communications :: Email',
2222
'License :: OSI Approved :: Apache Software License',
2323
'Programming Language :: Python :: 2',
2424
'Programming Language :: Python :: 2.7',
2525
'Programming Language :: Python :: 3',
2626
'Programming Language :: Python :: 3.4',
27+
'Programming Language :: Python :: 3.5',
2728
],
2829
)

sparkpost/__init__.py

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

1111

12-
__version__ = '1.2.0'
12+
__version__ = '1.3.0'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)