Skip to content

Commit 8c9bf1c

Browse files
committed
Bump version, update changelog
1 parent 17d60a1 commit 8c9bf1c

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Patches and suggestions
1515
- Marko Mrdjenovic `@friedcell <https://github.com/friedcell>`_
1616
- Zdeněk Softič `@btx <https://github.com/btx>`_
1717
- Simeon Visser `@svisser <https://github.com/svisser>`_
18+
- `@amatissart <https://github.com/amatissart>`_
1819
- `@gnarvaja <https://github.com/gnarvaja>`_
1920
- `@pegler <https://github.com/pegler>`_
2021
- `@puttu <https://github.com/puttu>`_

CHANGELOG.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,27 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [Unreleased][unreleased]
5+
## Unreleased
6+
- [Compare to latest release][unreleased]
7+
8+
## [1.1.1] - 2016-04-08
9+
### Fixed
10+
- [#99](https://github.com/SparkPost/python-sparkpost/pull/99) Issue where inline images were always passed to the API, which in turn required HTML content
611

712
## [1.1.0] - 2016-03-30
813
### Added
9-
- Better extensibility with support for Tornado
10-
- Support for inline images
11-
- Support for specifying IP pool
14+
- [#94](https://github.com/SparkPost/python-sparkpost/pull/94) Better extensibility with support for Tornado
15+
- [#95](https://github.com/SparkPost/python-sparkpost/pull/95) Support for CSS inlining
16+
- [#98](https://github.com/SparkPost/python-sparkpost/pull/98) Support for inline images
17+
- [#98](https://github.com/SparkPost/python-sparkpost/pull/98) Support for specifying IP pool
1218

1319
### 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
20+
- [#97](https://github.com/SparkPost/python-sparkpost/pull/97) Issue where substitution data was being improperly passed to the templates preview endpoint
21+
- [#91](https://github.com/SparkPost/python-sparkpost/pull/91) Issue where Django backend was not properly base64 encoding attachments
1622

1723
## [1.0.5] - 2016-03-18
1824
### Fixed
19-
- Issue where global Django settings object was being modified, causing mixed emails
25+
- [#89](https://github.com/SparkPost/python-sparkpost/pull/89) Issue where global Django settings object was being modified, causing mixed emails
2026

2127
## [1.0.4] - 2016-03-10
2228
### Added
@@ -75,7 +81,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
7581
- Metrics class for getting a list of campaigns and domains
7682
- Docs on readthedocs.org
7783

78-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...HEAD
84+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.1...HEAD
85+
[1.1.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...v1.1.1
7986
[1.1.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.0
8087
[1.0.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...v1.0.5
8188
[1.0.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...v1.0.4

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '1.1'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.1.0'
63+
release = '1.1.1'
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
setup(
88
name='sparkpost',
9-
version='1.1.0',
10-
author='Message Systems',
11-
author_email='appteam@messagesystems.com',
9+
version='1.1.1',
10+
author='SparkPost',
11+
author_email='developers@sparkpost.com',
1212
packages=find_packages(),
1313
url='https://github.com/SparkPost/python-sparkpost',
1414
license='Apache 2.0',

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.1.0'
12+
__version__ = '1.1.1'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)