From 2cebbe63bf9d0e2f08e0e1ef2579ef78eb65d899 Mon Sep 17 00:00:00 2001 From: Dan Richelson Date: Wed, 10 Aug 2016 15:10:33 -0700 Subject: [PATCH 1/3] Add changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..fbfe1c7b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Change log + +All notable changes to the LaunchDarkly Go SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). + +## [2.0.0] - 2016-08-08 +### Added +- Support for multivariate feature flags. New methods `StringVariation`, `JsonVariation` and `IntVariation` and `Float64Variation` for multivariates. +- New `AllFlags` method returns all flag values for a specified user. +- New `SecureModeHash` function computes a hash suitable for the new LaunchDarkly JavaScript client's secure mode feature. + +### Changed +- The `Feature` data model has been replaced with `FeatureFlag`. + +### Deprecated +- The `Toggle` call has been deprecated in favor of `BoolVariation`. \ No newline at end of file From 9ed1e4bc9a11c896c08cb0c28e8c2a70801336e8 Mon Sep 17 00:00:00 2001 From: Dan Richelson Date: Wed, 10 Aug 2016 15:11:40 -0700 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbfe1c7b..7cdb26ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ # Change log -All notable changes to the LaunchDarkly Go SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +All notable changes to the LaunchDarkly Python SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). -## [2.0.0] - 2016-08-08 +## [2.0.0] - 2016-08-10 ### Added -- Support for multivariate feature flags. New methods `StringVariation`, `JsonVariation` and `IntVariation` and `Float64Variation` for multivariates. -- New `AllFlags` method returns all flag values for a specified user. -- New `SecureModeHash` function computes a hash suitable for the new LaunchDarkly JavaScript client's secure mode feature. +- Support for multivariate feature flags. `variation` replaces `toggle` and can return a string, number, dict, or boolean value depending on how the flag is defined. +- New `all_flags` method returns all flag values for a specified user. +- New `secure_mode_hash` function computes a hash suitable for the new LaunchDarkly [JavaScript client's secure mode feature](https://github.com/launchdarkly/js-client#secure-mode). ### Changed -- The `Feature` data model has been replaced with `FeatureFlag`. +- Twisted support has temporarily been removed. ### Deprecated -- The `Toggle` call has been deprecated in favor of `BoolVariation`. \ No newline at end of file +- The `toggle` call has been deprecated in favor of `variation`. \ No newline at end of file From 1986b44cabff52bda331f2b63e16e0bc75296b28 Mon Sep 17 00:00:00 2001 From: John Kodumal Date: Wed, 10 Aug 2016 15:22:54 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cdb26ff..cc9c77f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,9 @@ All notable changes to the LaunchDarkly Python SDK will be documented in this fi - New `all_flags` method returns all flag values for a specified user. - New `secure_mode_hash` function computes a hash suitable for the new LaunchDarkly [JavaScript client's secure mode feature](https://github.com/launchdarkly/js-client#secure-mode). -### Changed +### Deprecated +- The `toggle` call has been deprecated in favor of `variation`. + +### Removed - Twisted support has temporarily been removed. -### Deprecated -- The `toggle` call has been deprecated in favor of `variation`. \ No newline at end of file