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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Optimizely Ruby SDK Changelog

## 5.5.0
September 2, 2026

### New Features

**Holdout Targeted Delivery Exclusion**: Holdouts can now be configured to exclude Targeted Delivery rules, so users held out of experiments still receive their Targeted Delivery experiences. This gives you a cleaner measure of experiment impact without holding users back from ongoing rollouts.

- Add holdout exclusion logic for Targeted Delivery rules ([#405](https://github.com/optimizely/ruby-sdk/pull/405))

## 5.4.0
July 8, 2026

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 = '5.4.0'
VERSION = '5.5.0'
end
6 changes: 4 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'coveralls'
Coveralls.wear!
if ENV['COVERALLS_REPO_TOKEN']
require 'coveralls'
Coveralls.wear!
end
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'optimizely'
require 'spec_params'
Expand Down
Loading