Skip to content

Commit 6e92595

Browse files
authored
Merge pull request #143 from rajumsys/v1.3.5
v1.3.5 release prep
2 parents f3d2ec6 + 9e8d692 commit 6e92595

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

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

8+
## [1.3.5] - 2017-03-07
9+
### Added
10+
- [#141](https://github.com/SparkPost/python-sparkpost/pull/141) Validation for recipients parameter for transmissions
11+
- [#142](https://github.com/SparkPost/python-sparkpost/pull/142) URI parameter support for transmissions list endpoint. Also added deprecation warning
12+
813
## [1.3.4] - 2017-02-16
914
### Added
1015
- Examples for exception handling and using the base resource class
@@ -123,7 +128,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
123128
- Metrics class for getting a list of campaigns and domains
124129
- Docs on readthedocs.org
125130

126-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.4...HEAD
131+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.5...HEAD
132+
[1.3.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.4...v1.3.5
127133
[1.3.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.3...v1.3.4
128134
[1.3.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...v1.3.3
129135
[1.3.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...v1.3.2

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.3'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.3.4'
63+
release = '1.3.5'
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.3.4',
9+
version='1.3.5',
1010
author='SparkPost',
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.3.4'
12+
__version__ = '1.3.5'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)