8000 prepare for release 3.8.0 · optimizely/ruby-sdk@ef941af · GitHub
[go: up one dir, main page]

Skip to content

Commit ef941af

Browse files
committed
prepare for release 3.8.0
1 parent 75fc548 commit ef941af

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Optimizely Ruby SDK Changelog
22

3+
## 3.8.0
4+
February 16th, 2021
5+
6+
### New Features:
7+
- Introducing a new primary interface for retrieving feature flag status, configuration and associated experiment decisions for users ([#274](https://github.com/optimizely/ruby-sdk/pull/274), [#279](https://github.com/optimizely/ruby-sdk/pull/279)). The new `OptimizelyUserContext` class is instantiated with `create_user_context` and exposes the following APIs to get `OptimizelyDecision`:
8+
9+
- set_attribute
10+
- decide
11+
- decide_all
12+
- decide_for_keys
13+
- track_event
14+
15+
- For details, refer to our documentation page: https://docs.developers.optimizely.com/full-stack/v4.0/docs/ruby-sdk.
16+
317
## 3.7.0
418
November 20th, 2020
519

lib/optimizely/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#
1818
module Optimizely
1919
CLIENT_ENGINE = 'ruby-sdk'
20-
VERSION = '3.7.0'
20+
VERSION = '3.8.0'
2121
end