Skip to content

Commit 6ded106

Browse files
authored
chore: Prep for release 3.10.1 (#297)
1 parent 2178ca6 commit 6ded106

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Optimizely Ruby SDK Changelog
22

3+
## 3.10.1
4+
February 2, 2022
5+
6+
### Enhancements:
7+
- Generate OptimizelyConfig object on API Call instead of SDK initialization to make the initialization faster ([#296](https://github.com/optimizely/ruby-sdk/pull/296)).
8+
39
## 3.10.0
410
January 11, 2022
511

6-
### New Features
12+
### New Features:
713
- Add a set of new APIs for overriding and managing user-level flag, experiment and delivery rule decisions. These methods can be used for QA and automated testing purposes. They are an extension of the OptimizelyUserContext interface ([#287](https://github.com/optimizely/ruby-sdk/pull/287), [#288](https://github.com/optimizely/ruby-sdk/pull/288), [#289](https://github.com/optimizely/ruby-sdk/pull/289), [#290](https://github.com/optimizely/ruby-sdk/pull/290), [#291](https://github.com/optimizely/ruby-sdk/pull/291), [#293](https://github.com/optimizely/ruby-sdk/pull/293)):
814
- setForcedDecision
915
- getForcedDecision

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.10.0'
20+
VERSION = '3.10.1'
2121
end

spec/optimizely_user_context_spec.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
project_id: '10431130345',
116116
revision: '241',
117117
client_name: 'ruby-sdk',
118-
client_version: '3.10.0',
118+
client_version: '3.10.1',
119119
anonymize_ip: true,
120120
enrich_decisions: true,
121121
visitors: [{
@@ -208,7 +208,7 @@
208208
project_id: '10431130345',
209209
revision: '241',
210210
client_name: 'ruby-sdk',
211-
client_version: '3.10.0',
211+
client_version: '3.10.1',
212212
anonymize_ip: true,
213213
enrich_decisions: true,
214214
visitors: [{
@@ -321,7 +321,7 @@
321321
project_id: '10431130345',
322322
revision: '241',
323323
client_name: 'ruby-sdk',
324-
client_version: '3.10.0',
324+
client_version: '3.10.1',
325325
anonymize_ip: true,
326326
enrich_decisions: true,
327327
visitors: [{

spec/project_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3625,7 +3625,7 @@ def callback(_args); end
36253625
project_id: '111001',
36263626
revision: '42',
36273627
client_name: 'ruby-sdk',
3628-
client_version: '3.10.0',
3628+
client_version: '3.10.1',
36293629
anonymize_ip: false,
36303630
enrich_decisions: true,
36313631
visitors: [{
@@ -3771,7 +3771,7 @@ def callback(_args); end
37713771
project_id: '111001',
37723772
revision: '42',
37733773
client_name: 'ruby-sdk',
3774-
client_version: '3.10.0',
3774+
client_version: '3.10.1',
37753775
anonymize_ip: false,
37763776
enrich_decisions: true,
37773777
visitors: [{

0 commit comments

Comments
 (0)