Skip to content

Commit 486357d

Browse files
chore(release): Preparing for 3.1.0 release (#167)
1 parent 9d0de5f commit 486357d

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 3.1.0
2+
May 3rd, 2019
3+
4+
### New Features:
5+
- Introduced Decision notification listener to be able to record:
6+
- Variation assignments for users activated in an experiment.
7+
- Feature access for users.
8+
- Feature variable value for users.
9+
10+
### Bug Fixes:
11+
- Feature variable APIs return default variable value when featureEnabled property is false. ([#162](https://github.com/optimizely/ruby-sdk/pull/162))
12+
13+
### Deprecated:
14+
- 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.
15+
116
## 3.0.0
217
March 8th, 2019
318

lib/optimizely/notification_center.rb

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class NotificationCenter
2121
attr_reader :notifications, :notification_id
2222

2323
NOTIFICATION_TYPES = {
24+
# DEPRECATED: ACTIVATE notification type is deprecated since relase 3.1.0.
2425
ACTIVATE: 'ACTIVATE: experiment, user_id, attributes, variation, event',
2526
DECISION: 'DECISION: type, user_id, attributes, decision_info',
2627
TRACK: 'TRACK: event_key, user_id, attributes, event_tags, event'

lib/optimizely/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#
1818
module Optimizely
1919
CLIENT_ENGINE = 'ruby-sdk'
20-
VERSION = '3.0.0'
20+
VERSION = '3.1.0'
2121
end

0 commit comments

Comments
 (0)