Skip to content

Commit

Permalink
Merge branch 'master' of github.com:launchdarkly/erlang-server-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
zurab-darkly committed Jul 25, 2019
2 parents 5728903 + fcf7b0a commit 0386700
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Change log

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-alpha1] - 2019-07-24

### Added

- Initial public release
- Support for streaming and evaluations

### Missing

- Events don't pass integration tests
- Polling support
- Other known issues and minor missing features
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
PROJECT = eld
PROJECT_DESCRIPTION = Erlang LaunchDarkly SDK Client
PROJECT_VERSION = 0.1.0
PROJECT_VERSION = 1.0.0-alpha1
>>>>>>> fcf7b0a78903157155112be77364362272931a56

# Dependencies

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# LaunchDarkly Server-side SDK for Erlang/Elixir

[![Circle CI](https://img.shields.io/circleci/project/launchdarkly/erlang-server-sdk-private.png)](https://circleci.com/gh/launchdarkly/erlang-server-sdk-private)
[![Circle CI](https://img.shields.io/circleci/project/launchdarkly/erlang-server-sdk.png)](https://circleci.com/gh/launchdarkly/erlang-server-sdk)

*This version of the SDK is an **alpha** version and should not be considered ready for production use while this message is visible.*

## LaunchDarkly overview

Expand Down
2 changes: 1 addition & 1 deletion relx.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{release, {eld, "0.1.0"}, [eld]}.
{release, {eld, "1.0.0-alpha1"}, [eld]}.
{extended_start_script, true}.
2 changes: 1 addition & 1 deletion src/eld.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, eld,
[{description, "LaunchDarkly Erlang SDK"},
{vsn, "0.1.0"},
{vsn, "1.0.0-alpha1"},
{registered, []},
{mod, {eld_app, []}},
{applications,
Expand Down
2 changes: 1 addition & 1 deletion src/eld_settings.erl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
-define(DEFAULT_EVENTS_DISPATCHER, eld_event_dispatch_httpc).
-define(DEFAULT_USER_KEYS_CAPACITY, 1000).
-define(USER_AGENT, "ErlangClient").
-define(VERSION, "0.1").
-define(VERSION, "1.0.0-alpha1").
-define(EVENT_SCHEMA, "3").

%%===================================================================
Expand Down

0 comments on commit 0386700

Please sign in to comment.