From 4183261b3f415758835bc9ce8a8a6916da7e869d Mon Sep 17 00:00:00 2001 From: Patrick Kaeding Date: Tue, 25 Apr 2017 14:53:07 -0700 Subject: [PATCH] prepare for 2.2.1 release --- CHANGELOG.md | 6 ++++++ build.gradle | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5067fafa..1ac035589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to the LaunchDarkly Java SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). + +## [2.2.1] - 2017-04-25 +### Fixed +- [#92](https://github.com/launchdarkly/java-client/issues/92) Regex `matches` targeting rules now include the user if +a match is found anywhere in the attribute. Before fixing this bug, the entire attribute needed to match the pattern. + ## [2.2.0] - 2017-04-11 ### Added - Authentication for proxied http requests is now supported (Basic Auth only) diff --git a/build.gradle b/build.gradle index d84e729f9..5edfa3ace 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ repositories { allprojects { group = 'com.launchdarkly' - version = "2.2.0" + version = "2.2.1" sourceCompatibility = 1.7 targetCompatibility = 1.7 }