Skip to content

Commit a1f0d64

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.1.1
1 parent 6d9ea4a commit a1f0d64

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly Erlang/Elixir SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.1.1] - 2023-08-02
6+
### Fixed:
7+
- Fixed `ldclient_instance:options()` to include new `redis_tls` option. Only specs affected.
8+
59
## [2.1.0] - 2023-08-01
610
### Added:
711
- 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`.

src/ldclient.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{application, ldclient,
22
[{description, "LaunchDarkly SDK for Erlang"},
33
{pkg_name, "launchdarkly_server_sdk"},
4-
{vsn, "2.1.0"},
4+
{vsn, "2.1.1"},
55
{registered, []},
66
{mod, {ldclient_app, []}},
77
{applications,

src/ldclient_config.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
-define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc).
107107
-define(MINIMUM_POLLING_INTERVAL, 30).
108108
-define(USER_AGENT, "ErlangClient").
109-
-define(VERSION, "2.1.0").
109+
-define(VERSION, "2.1.1").
110110
-define(EVENT_SCHEMA, "4").
111111
-define(DEFAULT_OFFLINE, false).
112112
-define(DEFAULT_REDIS_HOST, "127.0.0.1").

0 commit comments

Comments
 (0)