diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d48393b..b0034f9d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.3.0" + ".": "8.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b0b2cbf..91ac9375 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [8.3.1](https://github.com/launchdarkly/ruby-server-sdk/compare/8.3.0...8.3.1) (2024-03-28) + + +### Bug Fixes + +* Ensure Rails.logger exists before using it ([#258](https://github.com/launchdarkly/ruby-server-sdk/issues/258)) ([2f0f7ed](https://github.com/launchdarkly/ruby-server-sdk/commit/2f0f7edcce831b486f1fb8f9a5ce368575ad1b43)) +* Remove invalid prereq `check_variation_range` check ([#261](https://github.com/launchdarkly/ruby-server-sdk/issues/261)) ([#263](https://github.com/launchdarkly/ruby-server-sdk/issues/263)) ([74ca206](https://github.com/launchdarkly/ruby-server-sdk/commit/74ca2067fafead5325d824f8923ddb5ced83196d)), closes [#260](https://github.com/launchdarkly/ruby-server-sdk/issues/260) + ## [8.3.0](https://github.com/launchdarkly/ruby-server-sdk/compare/8.2.0...8.3.0) (2024-03-14) diff --git a/PROVENANCE.md b/PROVENANCE.md index d11b6297..c87ea9a1 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -9,7 +9,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https ``` # Set the version of the SDK to verify -SDK_VERSION=8.3.0 +SDK_VERSION=8.3.1 ``` diff --git a/lib/ldclient-rb/version.rb b/lib/ldclient-rb/version.rb index 447413f5..bc523aa9 100644 --- a/lib/ldclient-rb/version.rb +++ b/lib/ldclient-rb/version.rb @@ -1,3 +1,3 @@ module LaunchDarkly - VERSION = "8.3.0" # x-release-please-version + VERSION = "8.3.1" # x-release-please-version end