From 295915279023811be6c0b3f0a81de9ee68ea7c2d Mon Sep 17 00:00:00 2001 From: Andrew Nesbitt Date: Tue, 20 Oct 2015 20:17:07 +0100 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 18 ++++++++++++++++++ lib/split/version.rb | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed8fd0d..bfb28ddd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 1.3.0 (October 20th, 2015) + +Features + + - allow for custom redis_url different from ENV variable (@davidgrieser, #323) + - add ability to change the length of the persistence cookie (@peterylai, #335) + +Bugfixes: + + - Rescue from Redis::BaseError instead of Redis::CannotConnectError (@nfm, #342) + - Fix active experiments when experiment is on a later version (@ndrisso, #331) + - Fix caching of winning alternative (@nfm, #329) + +Misc: + + - Remove duplication from Experiment#save (@pakallis, #333) + - Remove unnecessary argument from Experiment#write_to_alternative (@t4deu, #332) + ## 1.2.1 (May 17th, 2015) Features diff --git a/lib/split/version.rb b/lib/split/version.rb index 9b1eb87a..270bd1b2 100644 --- a/lib/split/version.rb +++ b/lib/split/version.rb @@ -1,6 +1,6 @@ module Split MAJOR = 1 - MINOR = 2 - PATCH = 1 + MINOR = 3 + PATCH = 0 VERSION = [MAJOR, MINOR, PATCH].join('.') end