Skip to content

Commit 0770dba

Browse files
jaeoptaliabbasrizvi
authored andcommitted
chore: prepare for release 3.4.0 (#236)
1 parent 876d64b commit 0770dba

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Optimizely Python SDK Changelog
22

3+
## 3.4.0
4+
January 27th, 2020
5+
6+
### New Features:
7+
* Added a new API to get project configuration static data.
8+
* Call `get_optimizely_config()` to get a snapshot of project configuration static data.
9+
* It returns an `OptimizelyConfig` instance which includes a datafile revision number, all experiments, and feature flags mapped by their key values.
10+
* Added caching for `get_optimizely_config()` - `OptimizelyConfig` object will be cached and reused for the lifetime of the datafile.
11+
* For details, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-python](https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-python).
12+
13+
314
## 3.3.1
415
December 16th, 2019
516

optimizely/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2016-2019, Optimizely
1+
# Copyright 2016-2020, Optimizely
22
# Licensed under the Apache License, Version 2.0 (the "License");
33
# you may not use this file except in compliance with the License.
44
# You may obtain a copy of the License at
@@ -11,5 +11,5 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313

14-
version_info = (3, 3, 1)
14+
version_info = (3, 4, 0)
1515
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)