From b7315fe41614ef465185303f81ed403931b946aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 18:04:56 +0000 Subject: [PATCH] chore(v7): release 7.4.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ internal/version.go | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2487ed4f..a4494cc3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "7.4.0", + ".": "7.4.1", "ldotel": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b3997efb..56e72af2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to the LaunchDarkly Go SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [7.4.1](https://github.com/launchdarkly/go-server-sdk/compare/v7.4.0...v7.4.1) (2024-06-04) + + +### Bug Fixes + +* add warning log message if client init duration is longer than recommended (60s) ([68e3440](https://github.com/launchdarkly/go-server-sdk/commit/68e3440f5368aa23e72345abc56cb77d7fe90914)) +* align high timeout log msg with spec ([#150](https://github.com/launchdarkly/go-server-sdk/issues/150)) ([606d224](https://github.com/launchdarkly/go-server-sdk/commit/606d224c155833de2f2b38d5bea60de92e1765ea)) +* resolve data race in Broadcasters system ([#153](https://github.com/launchdarkly/go-server-sdk/issues/153)) ([68cb1a4](https://github.com/launchdarkly/go-server-sdk/commit/68cb1a48724a9b739eca801e5ff9b64a8c6f6b14)) + ## [7.4.0](https://github.com/launchdarkly/go-server-sdk/compare/v7.3.0...v7.4.0) (2024-04-10) This release contains no functional changes. It is a product of structural changes to the repository. diff --git a/internal/version.go b/internal/version.go index e39a5ec9..12ade184 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.4.0" // {{ x-release-please-version }} +const SDKVersion = "7.4.1" // {{ x-release-please-version }}