Skip to content

Commit 0ca8dbf

Browse files
author
Dan Richelson
committed
Update changelog + versions for 4.0.0
1 parent 2125c5a commit 0ca8dbf

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to the LaunchDarkly Python SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [4.0.0] - 2016-11-18
6+
### Changed
7+
- Changing the config and SDK key is now supported after initialization. The client will be restarted with the new configuration
8+
- Breaking api change: `ldclient.sdk_key = <KEY>` replaced with: `ldclient.set_sdk_key('<KEY>')`
9+
- Breaking api change: `ldclient.config = config` replaced with: `ldclient.set_config(config)`
10+
- No longer depend on sseclient library, instead include our own sse client
11+
512
## [3.0.3] - 2016-11-03
613
### Changed
714
- Add backoff when retrying stream connection.

ldclient/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "3.0.3"
1+
VERSION = "4.0.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def run(self):
3939

4040
setup(
4141
name='ldclient-py',
42-
version='3.0.3',
42+
version='4.0.0',
4343
author='LaunchDarkly',
4444
author_email='[email protected]',
4545
packages=['ldclient'],

0 commit comments

Comments
 (0)