diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a23c78a..158771a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.9.0" + ".": "8.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 16476c7..dec14d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [8.10.0](https://github.com/launchdarkly/ruby-server-sdk/compare/8.9.0...8.10.0) (2025-04-08) + + +### Features + +* Add `postfork` method to re-initialize after forking ([#319](https://github.com/launchdarkly/ruby-server-sdk/issues/319)) ([e7c2b07](https://github.com/launchdarkly/ruby-server-sdk/commit/e7c2b074c5de1cad92c92c4303d4143cf175d913)) + ## [8.9.0](https://github.com/launchdarkly/ruby-server-sdk/compare/8.8.4...8.9.0) (2025-03-13) diff --git a/PROVENANCE.md b/PROVENANCE.md index 1d8b326..129bdcb 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.9.0 +SDK_VERSION=8.10.0 ``` diff --git a/lib/ldclient-rb/version.rb b/lib/ldclient-rb/version.rb index 92469c6..de3b9b7 100644 --- a/lib/ldclient-rb/version.rb +++ b/lib/ldclient-rb/version.rb @@ -1,3 +1,3 @@ module LaunchDarkly - VERSION = "8.9.0" # x-release-please-version + VERSION = "8.10.0" # x-release-please-version end