Skip to content

chore(release): Preparing for 3.1.0 release #175

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

Merged
merged 7 commits into from
May 3, 2019
Merged
Show file tree
Hide file tree
Changes from 4 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
21 changes: 21 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
3.1.0
-----

May 2nd, 2019

New Features:
~~~~~~~~~~~~~

- Introduced Decision notification listener to be able to record:

- Variation assignments for users activated in an experiment.
- Feature access for users.
- Feature variable value for users.

Bug Fixes:
~~~~~~~~~~

- Feature variable APIs now return default variable value when featureEnabled property is false. (`#171`_)

.. _#171: https://github.com/optimizely/python-sdk/pull/171

3.0.0
-----

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