From a733178c954a4b66f24262b9b4309c571466406f Mon Sep 17 00:00:00 2001 From: John Nguyen Date: Wed, 12 Jan 2022 18:11:38 -0500 Subject: [PATCH 1/3] chore: Prepare for release 4.0.0 --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eaad324..f0015f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Optimizely Python SDK Changelog -## 3.11.0 -January 10th, 2022 +## 4.0.0 +January 12th, 2022 ### New Features * Add a set of new APIs for overriding and managing user-level flag, experiment and delivery rule decisions. These methods can be used for QA and automated testing purposes. They are an extension of the OptimizelyUserContext interface ([#361](https://github.com/optimizely/python-sdk/pull/361), [#365](https://github.com/optimizely/python-sdk/pull/365), [#369](https://github.com/optimizely/python-sdk/pull/369)): @@ -12,6 +12,12 @@ January 10th, 2022 * For details, refer to our documentation pages: [OptimizelyUserContext](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyusercontext-python) and [Forced Decision methods](https://docs.developers.optimizely.com/full-stack/v4.0/docs/forced-decision-methods-python). +### Breaking: + +* Support for `Python v3.4` has been dropped as of this release due to a security vulnerability with `PyYAML Date: Wed, 12 Jan 2022 18:30:14 -0500 Subject: [PATCH 2/3] Fix typo --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0015f7c..892d8ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ January 12th, 2022 * For details, refer to our documentation pages: [OptimizelyUserContext](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyusercontext-python) and [Forced Decision methods](https://docs.developers.optimizely.com/full-stack/v4.0/docs/forced-decision-methods-python). -### Breaking: +### Breaking Changes: * Support for `Python v3.4` has been dropped as of this release due to a security vulnerability with `PyYAML Date: Wed, 12 Jan 2022 18:31:39 -0500 Subject: [PATCH 3/3] chore: bump version.py --- optimizely/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optimizely/version.py b/optimizely/version.py index c76e73da..d6504ce4 100644 --- a/optimizely/version.py +++ b/optimizely/version.py @@ -11,5 +11,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -version_info = (3, 11, 0) +version_info = (4, 0, 0) __version__ = '.'.join(str(v) for v in version_info)