diff --git a/CHANGELOG.md b/CHANGELOG.md index 78af97da..a1c1e8d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [5.6.1] - 2020-01-06 +### Fixed: +- In rare circumstances (depending on the exact data in the flag configuration, the flag's salt value, and the user properties), a percentage rollout could fail and return a default value, logging the error "Data inconsistency in feature flag ... variation/rollout object with no variation or rollout". This would happen if the user's hashed value fell exactly at the end of the last "bucket" (the last variation defined in the rollout). This has been fixed so that the user will get the last variation. + ## [5.6.0] - 2019-08-28 ### Added: - Added support for upcoming LaunchDarkly experimentation features. See `LDClient.track()`. diff --git a/Gemfile.lock b/Gemfile.lock index 7345f00d..01304515 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - launchdarkly-server-sdk (5.6.0) + launchdarkly-server-sdk (5.6.1) concurrent-ruby (~> 1.0) json (>= 1.8, < 3) ld-eventsource (= 1.0.1) diff --git a/lib/ldclient-rb/version.rb b/lib/ldclient-rb/version.rb index 2260733c..0f614613 100644 --- a/lib/ldclient-rb/version.rb +++ b/lib/ldclient-rb/version.rb @@ -1,3 +1,3 @@ module LaunchDarkly - VERSION = "5.6.0" + VERSION = "5.6.1" end