From 52eb515ee05c1a00324763a4f0555f2aa2aed9b2 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Mon, 18 Oct 2021 20:22:50 +0000 Subject: [PATCH] Releasing version 1.2.0 --- CHANGELOG.md | 5 +++++ src/ldclient.app.src | 2 +- src/ldclient_config.erl | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f48ab8..5aa8a3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ 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.2.0] - 2021-10-18 +### Added: +- The SDK now supports the ability to control the proportion of traffic allocation to an experiment. This works in conjunction with a new platform feature now available to early access customers. +- The SDK now supports the ability to read flags from a file. + ## [1.1.3] - 2021-09-27 ### Fixed: - When a rule was missing both the rollout and the variation, and that rule was matched, then variation 0 would be returned instead of the default value. diff --git a/src/ldclient.app.src b/src/ldclient.app.src index 033bc65..2c0277d 100644 --- a/src/ldclient.app.src +++ b/src/ldclient.app.src @@ -1,7 +1,7 @@ {application, ldclient, [{description, "LaunchDarkly SDK for Erlang"}, {pkg_name, "launchdarkly_server_sdk"}, - {vsn, "1.1.3"}, + {vsn, "1.2.0"}, {registered, []}, {mod, {ldclient_app, []}}, {applications, diff --git a/src/ldclient_config.erl b/src/ldclient_config.erl index 1616dcf..2ec3899 100644 --- a/src/ldclient_config.erl +++ b/src/ldclient_config.erl @@ -69,7 +69,7 @@ -define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc). -define(MINIMUM_POLLING_INTERVAL, 30). -define(USER_AGENT, "ErlangClient"). --define(VERSION, "1.1.3"). +-define(VERSION, "1.2.0"). -define(EVENT_SCHEMA, "3"). -define(DEFAULT_OFFLINE, false). -define(DEFAULT_REDIS_HOST, "127.0.0.1").