Skip to content

Commit 75858eb

Browse files
authored
v3.5.0 (Unleash#111)
* Update changelog. * Automatic version bump via bumpversion.
1 parent fe6041a commit 75858eb

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.4.2
2+
current_version = 3.5.0
33
commit = True
44
tag = True
55
message = Automatic version bump via bumpversion.

UnleashClient/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Library
22
SDK_NAME = "unleash-client-python"
3-
SDK_VERSION = "3.4.2"
3+
SDK_VERSION = "3.5.0"
44
REQUEST_TIMEOUT = 30
55
METRIC_LAST_SENT_TIME = "mlst"
66

docs/changelog.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
## Next version
22

3-
**General**
3+
4+
## v3.5.0
45
* (Major) Stop using the `default_value` argument in the `is_enabled()` method (as it can cause counter-intuitive behavior) and add deprecation warning. This argument will be removed in the next major version upgrade!
56
* We recommend using the `fallback_function` argument instead. If you need a blanket True in case of an exception, you can pass in a lambda like: `lambda x, y: True`.
67
* (Minor) Add better logging for API errors.
8+
* (Minor) Update requests version to v2.25.0.
79

810

911
## v3.4.1, v3.4.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010

1111
setup(
1212
name='UnleashClient',
13-
version='3.4.2',
13+
version='3.5.0',
1414
author='Ivan Lee',
1515
author_email='ivanklee86@gmail.com',
1616
description='Python client for the Unleash feature toggle system!',

0 commit comments

Comments
 (0)