diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2dad766c..d2783379 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "7.13.1", + ".": "7.13.2", "ldotel": "1.3.0", "ldai": "0.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f511ca4..b2fa4c8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the LaunchDarkly Go SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [7.13.2](https://github.com/launchdarkly/go-server-sdk/compare/v7.13.1...v7.13.2) (2025-08-14) + + +### Bug Fixes + +* **experimental:** Add experimental LDScopedClient for incrementally building and propagating contexts ([#297](https://github.com/launchdarkly/go-server-sdk/issues/297)) ([2b96332](https://github.com/launchdarkly/go-server-sdk/commit/2b9633214755c469eea1673d383a489078fe3f24)) +* **experimental:** Functions for putting/getting an LDScopedClient from context.Context ([#305](https://github.com/launchdarkly/go-server-sdk/issues/305)) ([d61c744](https://github.com/launchdarkly/go-server-sdk/commit/d61c74412a9ffe35b40719238311f6182b342dc4)) + ## [7.13.1](https://github.com/launchdarkly/go-server-sdk/compare/v7.13.0...v7.13.1) (2025-07-25) diff --git a/internal/version.go b/internal/version.go index ea570941..9502b18f 100644 --- a/internal/version.go +++ b/internal/version.go @@ -1,4 +1,4 @@ package internal // SDKVersion is the current version string of the SDK. This is updated by our release scripts. -const SDKVersion = "7.13.1" // {{ x-release-please-version }} +const SDKVersion = "7.13.2" // {{ x-release-please-version }}