Skip to content

Commit 62aea87

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.1.0
1 parent 21acb2a commit 62aea87

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.0] - 2023-08-01
6+
### Added:
7+
- 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`.
8+
59
## [2.0.5] - 2023-06-12
610
### Changed:
711
- Upgraded `yamerl` to version `0.10.0`.

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.0.5"},
4+
{vsn, "2.1.0"},
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.0.5").
109+
-define(VERSION, "2.1.0").
110110
-define(EVENT_SCHEMA, "4").
111111
-define(DEFAULT_OFFLINE, false).
112112
-define(DEFAULT_REDIS_HOST, "127.0.0.1").

0 commit comments

Comments
 (0)