diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d2783379..e3f3471f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "7.13.2", + ".": "7.13.3", "ldotel": "1.3.0", "ldai": "0.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b2fa4c8b..bd216f21 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.3](https://github.com/launchdarkly/go-server-sdk/compare/v7.13.2...v7.13.3) (2025-08-20) + + +### Bug Fixes + +* **experimental:** NewScopedClient can now only take one context argument ([#309](https://github.com/launchdarkly/go-server-sdk/issues/309)) ([b149429](https://github.com/launchdarkly/go-server-sdk/commit/b149429419663486b4b2447a9cb3ce368cf84da9)) +* **experimental:** NewScopedClient, AddContext, OverwriteContextByKind emit usage events ([#310](https://github.com/launchdarkly/go-server-sdk/issues/310)) ([4a36949](https://github.com/launchdarkly/go-server-sdk/commit/4a3694921f023549074e6d92034f81b7b0fe80e7)) + ## [7.13.2](https://github.com/launchdarkly/go-server-sdk/compare/v7.13.1...v7.13.2) (2025-08-14) diff --git a/internal/version.go b/internal/version.go index 9502b18f..157dd8c8 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.2" // {{ x-release-please-version }} +const SDKVersion = "7.13.3" // {{ x-release-please-version }}