Skip to content

Commit

Permalink
Merge e8a4336 into 876d64b
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeopt committed Jan 27, 2020
2 parents 876d64b + e8a4336 commit f1e3b3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Optimizely Python SDK Changelog

## 3.4.0
January 27th, 2020

### New Features:
* Added a new API to get a project configuration static data.
* Call `get_optimizely_config()` to get a snapshot copy of project configuration static data.
* It returns an `OptimizelyConfig` instance which includes a datafile revision number, all experiments, and feature flags mapped by their key values.
* Added caching for `get_optimizely_config()` - `OptimizelyConfig` object will be cached and reused for the lifetime of the datafile
* For details, refer to a documentation page: https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-python


## 3.3.1
December 16th, 2019

Expand Down
2 changes: 1 addition & 1 deletion optimizely/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

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

0 comments on commit f1e3b3d

Please sign in to comment.