File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to the LaunchDarkly Python SDK will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org ) .
4
4
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
+
5
12
## [ 3.0.3] - 2016-11-03
6
13
### Changed
7
14
- Add backoff when retrying stream connection.
Original file line number Diff line number Diff line change 1
- VERSION = "3 .0.3 "
1
+ VERSION = "4 .0.0 "
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def run(self):
39
39
40
40
setup (
41
41
name = 'ldclient-py' ,
42
- version = '3 .0.3 ' ,
42
+ version = '4 .0.0 ' ,
43
43
author = 'LaunchDarkly' ,
44
44
45
45
packages = ['ldclient' ],
You can’t perform that action at this time.
0 commit comments