diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 58ef57e0..4e9d6c7e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "7.1.0" + ".": "7.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 04b087fd..192b1c4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly Go SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [7.1.1](https://github.com/launchdarkly/go-server-sdk/compare/v7.1.0...v7.1.1) (2024-03-14) + + +### Bug Fixes + +* do not emit error when RelayProxyEndpointsWithoutEvents is used ([#110](https://github.com/launchdarkly/go-server-sdk/issues/110)) ([0551bf1](https://github.com/launchdarkly/go-server-sdk/commit/0551bf115902f1f2d0691a060c1a16fc60ea7e69)) + ## [7.1.0](https://github.com/launchdarkly/go-server-sdk/compare/v7.0.1...v7.1.0) (2024-03-14) diff --git a/internal/version.go b/internal/version.go index 2ce5b0a6..40b5afa5 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.1.0" // {{ x-release-please-version }} +const SDKVersion = "7.1.1" // {{ x-release-please-version }}