From e277fc83f0b22941ac5cad6a741352e8b76e703a Mon Sep 17 00:00:00 2001 From: Ivan Lee Date: Tue, 20 Aug 2019 14:13:36 -0400 Subject: [PATCH] rc-2.5.0 (#31) * Update release notes. * Automatic version bump via bumpversion. --- .bumpversion.cfg | 2 +- UnleashClient/constants.py | 2 +- docs/changelog.md | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7c5545e..e3406363 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.0 +current_version = 2.5.0 commit = True tag = True message = Automatic version bump via bumpversion. diff --git a/UnleashClient/constants.py b/UnleashClient/constants.py index e263be27..b28965ca 100644 --- a/UnleashClient/constants.py +++ b/UnleashClient/constants.py @@ -1,6 +1,6 @@ # Library SDK_NAME = "unleash-client-python" -SDK_VERSION = "2.4.0" +SDK_VERSION = "2.5.0" REQUEST_TIMEOUT = 30 METRIC_LAST_SENT_TIME = "mlst" diff --git a/docs/changelog.md b/docs/changelog.md index 93251320..631e56f8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,7 +1,7 @@ -## Next +## v2.5.0 **General** -* (Minor) Unleash client will not error if cache is not present and Unleash server not accessible during initialization. +* (Minor) Unleash client will not error if cache is not present and Unleash server not accessible during initialization.. ## v2.4.0 diff --git a/setup.py b/setup.py index ed968bc7..6c098459 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def readme(): setup( name='UnleashClient', - version='2.4.0', + version='2.5.0', author='Ivan Lee', author_email='ivanklee86@gmail.com', description='Python client for the Unleash feature toggle system!',