diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7aa3d56..e91ae90 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.5.0" + ".": "4.5.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 834aef5..957f2f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly Haskell Server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [4.5.1](https://github.com/launchdarkly/haskell-server-sdk/compare/4.5.0...4.5.1) (2025-12-16) + + +### Bug Fixes + +* Export AllFlagsState selectors ([#100](https://github.com/launchdarkly/haskell-server-sdk/issues/100)) ([3cf57e5](https://github.com/launchdarkly/haskell-server-sdk/commit/3cf57e54252440715cad984f19a45f8fe7b60bf8)) + ## [4.5.0](https://github.com/launchdarkly/haskell-server-sdk/compare/4.4.1...4.5.0) (2025-04-14) diff --git a/PROVENANCE.md b/PROVENANCE.md index b968166..e7c98ba 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=4.5.0 +SDK_VERSION=4.5.1 ``` diff --git a/launchdarkly-server-sdk.cabal b/launchdarkly-server-sdk.cabal index 3df67bb..3bf1c39 100644 --- a/launchdarkly-server-sdk.cabal +++ b/launchdarkly-server-sdk.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: launchdarkly-server-sdk -version: 4.5.0 +version: 4.5.1 synopsis: Server-side SDK for integrating with LaunchDarkly description: Please see the README on GitHub at category: Web diff --git a/package.yaml b/package.yaml index 767f83a..35f82c9 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: launchdarkly-server-sdk -version: 4.5.0 +version: 4.5.1 github: launchdarkly/haskell-server-sdk license: Apache-2.0 license-file: LICENSE diff --git a/src/LaunchDarkly/Server/Client/Internal.hs b/src/LaunchDarkly/Server/Client/Internal.hs index 475aca1..110c6d1 100644 --- a/src/LaunchDarkly/Server/Client/Internal.hs +++ b/src/LaunchDarkly/Server/Client/Internal.hs @@ -21,7 +21,7 @@ import LaunchDarkly.Server.Store.Internal (StoreHandle, getInitializedC) -- | The version string for this library. clientVersion :: Text -clientVersion = "4.5.0" -- x-release-please-version +clientVersion = "4.5.1" -- x-release-please-version -- | -- Client is the LaunchDarkly client. Client instances are thread-safe.