Skip to content

Commit 84dc850

Browse files
author
Rich Leland
committed
Bump version, update changelog
1 parent 7be6972 commit 84dc850

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

AUTHORS.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ Patches and suggestions
1111

1212
- Barthelemy Dagenais `@bartdag <https://github.com/bartdag>`_
1313
- Mohammad Hossain `@rajumsys <https://github.com/rajumsys>`_
14+
- Jared Morse `@jarcoal <https://github.com/jarcoal>`_
15+
- Marko Mrdjenovic `@friedcell <https://github.com/friedcell>`_
1416
- Zdeněk Softič `@btx <https://github.com/btx>`_
1517
- Simeon Visser `@svisser <https://github.com/svisser>`_
1618
- `@gnarvaja <https://github.com/gnarvaja>`_
19+
- `@pegler <https://github.com/pegler>`_
1720
- `@puttu <https://github.com/puttu>`_
18-
- Marko Mrdjenovic `@friedcell <https://github.com/friedcell>`_
1921
- ADD YOURSELF HERE (and link to your github page)

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66

7+
## [1.1.0] - 2016-03-30
8+
### Added
9+
- Better extensibility with support for Tornado
10+
- Support for inline images
11+
- Support for specifying IP pool
12+
13+
### Fixed
14+
- Issue where substitution data was being improperly passed to the templates preview endpoint
15+
- Issue where Django backend was not properly base64 encoding attachments
16+
717
## [1.0.5] - 2016-03-18
818
### Fixed
919
- Issue where global Django settings object was being modified, causing mixed emails
@@ -65,7 +75,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6575
- Metrics class for getting a list of campaigns and domains
6676
- Docs on readthedocs.org
6777

68-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...HEAD
78+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...HEAD
79+
[1.1.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.0
6980
[1.0.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...v1.0.5
7081
[1.0.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...v1.0.4
7182
[1.0.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.2...v1.0.3

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.0'
61+
version = '1.1'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.0.5'
63+
release = '1.1.0'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# 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.5',
9+
version='1.1.0',
1010
author='Message Systems',
1111
author_email='[email protected]',
1212
packages=find_packages(),

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.0.6.dev1'
12+
__version__ = '1.1.0'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)