diff --git a/AUTHORS.rst b/AUTHORS.rst index c633ec0..da0b720 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -25,4 +25,5 @@ Contributors - Janusz Skonieczny `@wooyek `_ - Richard Dawe `@richdawe77 `_ - John Keyes `@jkeyes `_ +- Fran VĂ©lez `@franciscovelez `_ - ADD YOURSELF HERE (and link to your github page) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1c3518..191ca17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased - [Compare to latest release][unreleased] +## [1.3.11] - 2021-12-13 +- [#221](https://github.com/SparkPost/python-sparkpost/pull/221) Update documentation for EU users + ## [1.3.10] - 2021-11-09 - [#219](https://github.com/SparkPost/python-sparkpost/pull/219) Support for perform_substitution diff --git a/README.rst b/README.rst index 33c7633..de97981 100644 --- a/README.rst +++ b/README.rst @@ -70,8 +70,8 @@ For SparkPost EU and Enterprise accounts, pass in a second parameter to set the .. code-block:: python - from sparkpost import SparkPost - sp = SparkPost('YOUR API KEY', 'https://api.eu.sparkpost.com') + from sparkpost import SparkPost, EU_API + sp = SparkPost('YOUR API KEY', EU_API) .. _API & SMTP: https://app.sparkpost.com/#/configuration/credentials diff --git a/setup.py b/setup.py index 12b81a9..22d07f6 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='sparkpost', - version='1.3.10', + version='1.3.11', author='SparkPost', author_email='developers@sparkpost.com', packages=find_packages(), diff --git a/sparkpost/__init__.py b/sparkpost/__init__.py index 3f09747..5ac0135 100644 --- a/sparkpost/__init__.py +++ b/sparkpost/__init__.py @@ -9,7 +9,7 @@ from .transmissions import Transmissions -__version__ = '1.3.10' +__version__ = '1.3.11' EU_API = 'api.eu.sparkpost.com' US_API = 'api.sparkpost.com'