Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Optimizely Ruby SDK Changelog

## 3.8.1
August 2nd, 2021

### Bug Fixes:
- Fixed duplicate experiment key issue with multiple feature flags. While trying to get variation from the variationKeyMap, it was unable to find because the latest experimentKey was overriding the previous one. [#282](https://github.com/optimizely/ruby-sdk/pull/282)

## 3.8.0
February 16th, 2021

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.8.0'
VERSION = '3.8.1'
end
4 changes: 2 additions & 2 deletions spec/project_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3625,7 +3625,7 @@ def callback(_args); end
project_id: '111001',
revision: '42',
client_name: 'ruby-sdk',
client_version: '3.8.0',
client_version: '3.8.1',
anonymize_ip: false,
enrich_decisions: true,
visitors: [{
Expand Down Expand Up @@ -3771,7 +3771,7 @@ def callback(_args); end
project_id: '111001',
revision: '42',
client_name: 'ruby-sdk',
client_version: '3.8.0',
client_version: '3.8.1',
anonymize_ip: false,
enrich_decisions: true,
visitors: [{
Expand Down