diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d7c4fd08..719ba707 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.14.0" + ".": "8.14.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bdaae82b..21f458f7 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.14.1](https://github.com/launchdarkly/ruby-server-sdk/compare/8.14.0...8.14.1) (2026-08-18) + + +### Bug Fixes + +* Send the FDv2 polling selector as the "basis" query parameter ([#418](https://github.com/launchdarkly/ruby-server-sdk/issues/418)) ([1084931](https://github.com/launchdarkly/ruby-server-sdk/commit/10849318754ff756f7912c6ab772d2fbc51409d5)) +* Stop per-context private attributes from accumulating between contexts ([#416](https://github.com/launchdarkly/ruby-server-sdk/issues/416)) ([2fd26ea](https://github.com/launchdarkly/ruby-server-sdk/commit/2fd26ea43d4b56276199094ced98f780f2ec1bb5)) + ## [8.14.0](https://github.com/launchdarkly/ruby-server-sdk/compare/8.13.0...8.14.0) (2026-05-12) diff --git a/PROVENANCE.md b/PROVENANCE.md index ea33c242..028f14cf 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -9,7 +9,7 @@ To verify build provenance attestations, we recommend using the [GitHub CLI `att ``` # Set the version of the SDK to verify -SDK_VERSION=8.14.0 +SDK_VERSION=8.14.1 ``` diff --git a/lib/ldclient-rb/version.rb b/lib/ldclient-rb/version.rb index 9a27b2b0..72d358aa 100644 --- a/lib/ldclient-rb/version.rb +++ b/lib/ldclient-rb/version.rb @@ -1,3 +1,3 @@ module LaunchDarkly - VERSION = "8.14.0" # x-release-please-version + VERSION = "8.14.1" # x-release-please-version end