From a1f0d642229adc421be6d5eb8fc67c55adec5ff0 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Wed, 2 Aug 2023 20:38:02 +0000 Subject: [PATCH] Releasing version 2.1.1 --- CHANGELOG.md | 4 ++++ src/ldclient.app.src | 2 +- src/ldclient_config.erl | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b618996..95bb5f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly Erlang/Elixir SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.1.1] - 2023-08-02 +### Fixed: +- Fixed `ldclient_instance:options()` to include new `redis_tls` option. Only specs affected. + ## [2.1.0] - 2023-08-01 ### Added: - A new configuration option, `redis_tls`, for configuring TLS settings for redis. When this option is omitted Redis will not use TLS. When specified it should contain a list of `ssl:tls_option()`. These options will be forwarded to `eredis`. diff --git a/src/ldclient.app.src b/src/ldclient.app.src index 2e3c123..966b9ee 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, "2.1.0"}, + {vsn, "2.1.1"}, {registered, []}, {mod, {ldclient_app, []}}, {applications, diff --git a/src/ldclient_config.erl b/src/ldclient_config.erl index 11ab381..98ee3a5 100644 --- a/src/ldclient_config.erl +++ b/src/ldclient_config.erl @@ -106,7 +106,7 @@ -define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc). -define(MINIMUM_POLLING_INTERVAL, 30). -define(USER_AGENT, "ErlangClient"). --define(VERSION, "2.1.0"). +-define(VERSION, "2.1.1"). -define(EVENT_SCHEMA, "4"). -define(DEFAULT_OFFLINE, false). -define(DEFAULT_REDIS_HOST, "127.0.0.1").