From ce2ea06cbd2566562a3a136e5c0a3057ec35a197 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 16:23:46 -0500 Subject: [PATCH] chore(main): release 4.0.2 (#72) :robot: I have created a release *beep* *boop* --- ## [4.0.2](https://github.com/launchdarkly/haskell-server-sdk/compare/4.0.1...4.0.2) (2024-02-01) ### Bug Fixes * **deps:** Drop explicit dependency on vector ([#69](https://github.com/launchdarkly/haskell-server-sdk/issues/69)) ([3bb826d](https://github.com/launchdarkly/haskell-server-sdk/commit/3bb826da77f34983abebe84612dfa9d7f8c346c9)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: LaunchDarklyReleaseBot --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ launchdarkly-server-sdk.cabal | 2 +- package.yaml | 2 +- src/LaunchDarkly/Server/Client/Internal.hs | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cf533f2..1778b2a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.0.1" + ".": "4.0.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 857fdd7..6ad696b 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.0.2](https://github.com/launchdarkly/haskell-server-sdk/compare/4.0.1...4.0.2) (2024-02-01) + + +### Bug Fixes + +* **deps:** Drop explicit dependency on vector ([#69](https://github.com/launchdarkly/haskell-server-sdk/issues/69)) ([3bb826d](https://github.com/launchdarkly/haskell-server-sdk/commit/3bb826da77f34983abebe84612dfa9d7f8c346c9)) + ## [4.0.1] - 2023-10-26 ### Removed: - Eliminated unnecessary and noisy log message diff --git a/launchdarkly-server-sdk.cabal b/launchdarkly-server-sdk.cabal index b7690b9..d441f3e 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.0.1 +version: 4.0.2 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 23cd6e2..be91abc 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: launchdarkly-server-sdk -version: 4.0.1 # x-release-please-version +version: 4.0.2 # x-release-please-version 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 4dca337..65b72df 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.0.1" -- x-release-please-version +clientVersion = "4.0.2" -- x-release-please-version -- | -- Client is the LaunchDarkly client. Client instances are thread-safe.