From f3938dbc5e4284c304a275eaef92a88312ab2880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20V=C3=A9lez?= Date: Mon, 13 Dec 2021 10:59:16 +0100 Subject: [PATCH 1/2] Update documentation for EU users --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 9b571cdff3056ae46911a8256f90417f727dce30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20V=C3=A9lez?= Date: Mon, 13 Dec 2021 11:05:04 +0100 Subject: [PATCH 2/2] Increment library version --- AUTHORS.rst | 1 + CHANGELOG.md | 3 +++ setup.py | 2 +- sparkpost/__init__.py | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) 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/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'