Skip to content

Commit da8e60e

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.0.3
1 parent e4bfbb3 commit da8e60e

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.0.3] - 2023-05-30
6+
### Fixed:
7+
- Add missing `boolean()` type to the `ldclient_context:attribute_value()` definition.
8+
59
## [2.0.2] - 2023-05-26
610
### Fixed:
711
- Fixed an issue that would prevent using values from redis for `variation` or `all_flags_state` calls before client initialization was complete. After this change if the erlang SDK is using an initialized redis prefix, then it will be able to evaluate against that store before initialization is complete. Note that the SDK did not previously store the `$inited` key used when detecting that a store is initialized, so the store will need updated by this SDK version (or newer) at least once before it would be considered initialized.

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.2"},
4+
{vsn, "2.0.3"},
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
@@ -105,7 +105,7 @@
105105
-define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc).
106106
-define(MINIMUM_POLLING_INTERVAL, 30).
107107
-define(USER_AGENT, "ErlangClient").
108-
-define(VERSION, "2.0.2").
108+
-define(VERSION, "2.0.3").
109109
-define(EVENT_SCHEMA, "4").
110110
-define(DEFAULT_OFFLINE, false).
111111
-define(DEFAULT_REDIS_HOST, "127.0.0.1").

0 commit comments

Comments
 (0)