Skip to content

Commit

Permalink
Releasing version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyCI committed Feb 23, 2021
1 parent 5ec6a24 commit c09497d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

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

## [1.0.0] - 2021-02-22
Initial supported release of the SDK.

### Added:
- Added Redis feature store.
- Added LDD mode.
- Reload in-memory flag data when storage server fails.

### Changed:
- Parse flags and segments before in-memory storage.
- Updated the default base URL to `sdk.launchdarkly.com`.
- Events URL path from `api/events/bulk` to `/bulk`.
- Renamed `ldclient_settings` to `ldclient_config`.
- Renamed `ldclient:track_with_metric` to `ldclient:track_metric`.
- Improved generated documentation.

### Fixed:
- Ignore path in streaming put events.

### Removed:
- Removed `ldclient_settings`.
- Removed `ldclient:track_with_metric`.



## [1.0.0-beta4] - 2020-08-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/ldclient.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{application, ldclient,
[{description, "LaunchDarkly SDK for Erlang"},
{pkg_name, "launchdarkly_server_sdk"},
{vsn, "1.0.0-beta4"},
{vsn, "1.0.0"},
{registered, []},
{mod, {ldclient_app, []}},
{applications,
Expand Down
2 changes: 1 addition & 1 deletion src/ldclient_config.erl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
-define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc).
-define(MINIMUM_POLLING_INTERVAL, 30).
-define(USER_AGENT, "ErlangClient").
-define(VERSION, "1.0.0-beta4").
-define(VERSION, "1.0.0").
-define(EVENT_SCHEMA, "3").
-define(DEFAULT_OFFLINE, false).
-define(DEFAULT_REDIS_HOST, "127.0.0.1").
Expand Down

0 comments on commit c09497d

Please sign in to comment.