From c4a40363694d0ef326b768006ebdf0b92d971334 Mon Sep 17 00:00:00 2001 From: aliabbasrizvi Date: Tue, 7 Jul 2020 10:20:53 -0700 Subject: [PATCH] chore(release): Preparing for 3.5.0 release --- CHANGELOG.md | 12 ++++++++++++ optimizely/version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2810ac8..166308f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Optimizely Python SDK Changelog +## 3.4.0 +July 9th, 2020 + +### New Features: +* Introduced 2 APIs to interact with feature variables: + * `get_feature_variable_json` allows you to get value for JSON variables related to a feature. + * `get_all_feature_variables` gets values for all variables under a feature. +* Added support for fetching authenticated datafiles. `HTTPProjectConfigManager` now accepts `datafileAccessToken` to be able to fetch datafiles belonging to secure environments. + +### Bug Fixes: +* Fixed log messages for targeted rollouts evaluation. ([#268](https://github.com/optimizely/python-sdk/pull/268)) + ## 3.4.2 June 11th, 2020 diff --git a/optimizely/version.py b/optimizely/version.py index c15d61a3..3c88c77d 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, 4, 2) +version_info = (3, 5, 0) __version__ = '.'.join(str(v) for v in version_info)