diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 27d2fbb..c0786b3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.7.0" + ".": "3.7.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ce8a5f5..08c0a82 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.1](https://github.com/launchdarkly/erlang-server-sdk/compare/v3.7.0...v3.7.1) (2025-06-03) + + +### Bug Fixes + +* Change certifi dependency to a minimum version. ([#150](https://github.com/launchdarkly/erlang-server-sdk/issues/150)) ([b1a91c0](https://github.com/launchdarkly/erlang-server-sdk/commit/b1a91c0ccc91ca130b243d53bbd65288fa6f0fbf)), closes [#149](https://github.com/launchdarkly/erlang-server-sdk/issues/149) + ## [3.7.0](https://github.com/launchdarkly/erlang-server-sdk/compare/v3.6.0...v3.7.0) (2025-05-08) diff --git a/src/ldclient.app.src b/src/ldclient.app.src index 9aee51b..2f3d620 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.0"}, %% x-release-please-version + {vsn, "3.7.1"}, %% x-release-please-version {registered, []}, {mod, {ldclient_app, []}}, {applications, diff --git a/src/ldclient_config.erl b/src/ldclient_config.erl index 0fe9eba..ec259e9 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.0"). %% x-release-please-version +-define(VERSION, "3.7.1"). %% x-release-please-version -define(EVENT_SCHEMA, "4"). -define(DEFAULT_OFFLINE, false). -define(DEFAULT_REDIS_HOST, "127.0.0.1").