Skip to content

Commit 3281623

Browse files
[FSSDK-8954] chore: prep for 4.1.1 release (#421)
* prep for 4.1.1 release
1 parent ed3cde2 commit 3281623

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Optimizely Python SDK Changelog
22

3+
## 4.1.1
4+
March 10th, 2023
5+
6+
We updated our README.md and other non-functional code to reflect that this SDK supports both Optimizely Feature Experimentation and Optimizely Full Stack. ([#420](https://github.com/optimizely/python-sdk/pull/420))
7+
38
## 4.1.0
49
July 7th, 2022
510

@@ -30,10 +35,10 @@ January 12th, 2022
3035
September 16th, 2021
3136

3237
### New Features
33-
* Added new public properties to OptimizelyConfig.
38+
* Added new public properties to OptimizelyConfig.
3439
- sdk_key and environment_key [#338] (https://github.com/optimizely/python-sdk/pull/338)
3540
- attributes and events [#339] (https://github.com/optimizely/python-sdk/pull/339)
36-
- experiment_rules, delivery_rules, audiences and audiences in OptimizelyExperiment
41+
- experiment_rules, delivery_rules, audiences and audiences in OptimizelyExperiment
3742
- [#342] (https://github.com/optimizely/python-sdk/pull/342)
3843
- [#351] (https://github.com/optimizely/python-sdk/pull/351/files)
3944
* For details please refer to our documentation page:
@@ -158,7 +163,7 @@ October 28th, 2019
158163
* To configure event batching, set the `batch_size` and `flush_interval` properties when initializing instance of [BatchEventProcessor](https://github.com/optimizely/python-sdk/blob/3.3.x/optimizely/event/event_processor.py#L45).
159164
* Event batching is disabled by default. You can pass in instance of `BatchEventProcessor` when creating `Optimizely` instance to enable event batching.
160165
* Users can subscribe to `LogEvent` notification to be notified of whenever a payload consisting of a batch of user events is handed off to the event dispatcher to send to Optimizely's backend.
161-
* Introduced blocking timeout in `PollingConfigManager`. By default, calls to `get_config` will block for maximum of 10 seconds until config is available.
166+
* Introduced blocking timeout in `PollingConfigManager`. By default, calls to `get_config` will block for maximum of 10 seconds until config is available.
162167

163168
### Bug Fixes:
164169
* Fixed incorrect log message when numeric metric is not used. ([#217](https://github.com/optimizely/python-sdk/pull/217))

optimizely/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2016-2020, Optimizely
1+
# Copyright 2016-2020, 2022-2023, 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 = (4, 1, 0)
14+
version_info = (4, 1, 1)
1515
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)