From 73416f7fd4c64fa13bf797f32d10300946a27ec0 Mon Sep 17 00:00:00 2001 From: Andrew Nesbitt Date: Sat, 24 Jan 2015 12:08:44 +0000 Subject: [PATCH] v1.2.0 --- CHANGELOG.md | 11 +++++++++++ lib/split/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38588698..79aa843d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 1.2.0 (January 24th, 2015) + +Features + + - Configure redis using environment variables if available (@saratovsource , #293) + - Store metadata on experiment configuration (@dekz, #291) + +Bugfixes: + + - Revert the Trial#complete! public API to support noargs (@dekz, #292) + ## 1.1.0 (January 9th, 2015) Features: diff --git a/lib/split/version.rb b/lib/split/version.rb index 9bc52049..44b7d2a7 100644 --- a/lib/split/version.rb +++ b/lib/split/version.rb @@ -1,6 +1,6 @@ module Split MAJOR = 1 - MINOR = 1 + MINOR = 2 PATCH = 0 VERSION = [MAJOR, MINOR, PATCH].join('.') end