Skip to content

chore :update for 3.6 release #299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Optimizely Python SDK Changelog

## 3.6.0-beta
September 22st, 2020
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

22nd ... and now 23rd


### New Features:
* Version targeting using semantic version syntax [#293](https://github.com/optimizely/python-sdk/pull/293).
* Datafile accessor API added to access current config as a json string [#283](https://github.com/optimizely/python-sdk/pull/283).

### Bug Fixes:
* Fixed package installation for Python 3.4 and pypy [#298](https://github.com/optimizely/python-sdk/pull/298).

## 3.5.2
July 14th, 2020

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, 5, 2)
version_info = (3, 6, '0-beta')
__version__ = '.'.join(str(v) for v in version_info)