Skip to content

Commit c666188

Browse files
author
tuck1s
committed
Version 1.3.9
1 parent b8df016 commit c666188

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

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

8+
## [1.3.9] - 2021-04-29
9+
- [#215](https://github.com/SparkPost/python-sparkpost/pull/215) Fix bug in _translate_keys that affects non-nested parameters
10+
811
## [1.3.8] - 2021-04-09
912
- [#214](https://github.com/SparkPost/python-sparkpost/pull/214) Support for AMP HTML for transmissions
1013

CONTRIBUTING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,12 @@ If you do not have Python 2.7, 3.4, and 3.5, you can install them with pyenv:
6666

6767
## Releasing
6868

69-
To put python-sparkpost on PyPI
69+
### Increment the library version number
70+
* Update version number in setup.py
71+
* Update version number in sparkpost/__init__.py
72+
* Update CHANGELOG.md to reflect the changes
73+
74+
### To put python-sparkpost on PyPI
7075

7176
* Ensure you have maintainer privileges in PyPI
7277
* Update your ``~/.pypirc`` if necessary to contain your username and password (hint: you can run ``python setup.py register``)

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.8',
9+
version='1.3.9',
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.8'
12+
__version__ = '1.3.9'
1313

1414
EU_API = 'api.eu.sparkpost.com'
1515
US_API = 'api.sparkpost.com'

0 commit comments

Comments
 (0)