diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c0786b3..21738b7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.7.1" + ".": "3.7.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 08c0a82..8cac36d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly Erlang/Elixir SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [3.7.2](https://github.com/launchdarkly/erlang-server-sdk/compare/v3.7.1...v3.7.2) (2025-06-25) + + +### Bug Fixes + +* Fix an issue with rollouts with a missing attribute. ([#153](https://github.com/launchdarkly/erlang-server-sdk/issues/153)) ([a94ed9c](https://github.com/launchdarkly/erlang-server-sdk/commit/a94ed9c50f6f65f155d1604e29eedab8780192a9)), closes [#152](https://github.com/launchdarkly/erlang-server-sdk/issues/152) + ## [3.7.1](https://github.com/launchdarkly/erlang-server-sdk/compare/v3.7.0...v3.7.1) (2025-06-03) diff --git a/src/ldclient.app.src b/src/ldclient.app.src index 2f3d620..cb94926 100644 --- a/src/ldclient.app.src +++ b/src/ldclient.app.src @@ -1,7 +1,7 @@ {application, ldclient, [{description, "LaunchDarkly SDK for Erlang"}, {pkg_name, "launchdarkly_server_sdk"}, - {vsn, "3.7.1"}, %% x-release-please-version + {vsn, "3.7.2"}, %% x-release-please-version {registered, []}, {mod, {ldclient_app, []}}, {applications, diff --git a/src/ldclient_config.erl b/src/ldclient_config.erl index ec259e9..17d7eba 100644 --- a/src/ldclient_config.erl +++ b/src/ldclient_config.erl @@ -107,7 +107,7 @@ -define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc). -define(MINIMUM_POLLING_INTERVAL, 30). -define(USER_AGENT, "ErlangClient"). --define(VERSION, "3.7.1"). %% x-release-please-version +-define(VERSION, "3.7.2"). %% x-release-please-version -define(EVENT_SCHEMA, "4"). -define(DEFAULT_OFFLINE, false). -define(DEFAULT_REDIS_HOST, "127.0.0.1").