Skip to content

Commit

Permalink
chore(release): Preparing for 3.1.0 release (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliabbasrizvi authored May 3, 2019
1 parent 9d0de5f commit 486357d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 3.1.0
May 3rd, 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 return default variable value when featureEnabled property is false. ([#162](https://github.com/optimizely/ruby-sdk/pull/162))

### Deprecated:
- Activate notification listener is deprecated as of this release. Recommendation is to use the new Decision notification listener. Activate notification listener will be removed in the next major release.

## 3.0.0
March 8th, 2019

Expand Down
1 change: 1 addition & 0 deletions lib/optimizely/notification_center.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class NotificationCenter
attr_reader :notifications, :notification_id

NOTIFICATION_TYPES = {
# DEPRECATED: ACTIVATE notification type is deprecated since relase 3.1.0.
ACTIVATE: 'ACTIVATE: experiment, user_id, attributes, variation, event',
DECISION: 'DECISION: type, user_id, attributes, decision_info',
TRACK: 'TRACK: event_key, user_id, attributes, event_tags, event'
Expand Down
2 changes: 1 addition & 1 deletion lib/optimizely/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
#
module Optimizely
CLIENT_ENGINE = 'ruby-sdk'
VERSION = '3.0.0'
VERSION = '3.1.0'
end

0 comments on commit 486357d

Please sign in to comment.