From a5f7140b784e2e7c37cb16d3349bfc7e73a183fd Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Thu, 7 Oct 2021 13:28:21 +1000 Subject: [PATCH] Release 1.0.3 --- CHANGELOG.md | 10 ++++++++++ setup.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b849e50..ef23662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +- n/a + +## 1.0.3 - 2021-10-07 + +### Fixed + +- When constructing a `FastPurgeClient` with an `auth` dict, the given dict is no + longer modified. Previously, dict contents would be modified destructively, + preventing reuse of the object for more than one client. + ### Changed - Executors are now named for improved metrics/debuggability. diff --git a/setup.py b/setup.py index c01313e..701ed4c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_requirements(): setup( name='fastpurge', - version='1.0.2', + version='1.0.3', packages=['fastpurge'], url='https://github.com/release-engineering/python-fastpurge', license='GNU General Public License',