From 02f3f14f99288c3395910999cdb657f2ec5a06cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Leal=20Cardoso=20Junior?= Date: Fri, 12 Apr 2019 14:40:43 -0300 Subject: [PATCH] Bump version to 3.3.2 --- CHANGELOG.md | 26 ++++++++++++++++++++++++-- lib/split/version.rb | 2 +- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b16a299e..10a59660 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,33 @@ +## 3.3.2 (April 12th, 2019) + +Features: +- Added uptime robot to configuration.rb (@razel1982, #556) +- Check to see if being run in Rails application and run in before_initialize (@husteadrobert, #555) + +Bugfixes: +- Fix error message interpolation (@hanibash, #553) +- Fix Bigdecimal warnings (@agraves, #551) +- Avoid hitting up on redis for robots/excluded users. (@andrehjr, #544) +- Checks for defined?(request) on Helper#exclude_visitor?. (@andrehjr) + +Misc: +- Update travis to add Rails 6 (@edmilton, #559) +- Fix broken specs in developement environment (@dougpetronilio, #557) + ## 3.3.1 (January 11th, 2019) + +Features: - Filter some more bots (@janosch-x, #542) + +Bugfixes: - Fix Dashboard Pagination Helper typo (@cattekin, #541) -- Tweak RSpec instructions (@eliotsykes, #540) - Do not storage alternative in cookie if experiment has a winner (@sadhu89, #539) -- Improve README regarding rspec usage (@vermaxik, #538) - fix user participating alternative not found (@NaturalHokke, #536) +Misc: +- Tweak RSpec instructions (@eliotsykes, #540) +- Improve README regarding rspec usage (@vermaxik, #538) + ## 3.3.0 (August 13th, 2018) Features: diff --git a/lib/split/version.rb b/lib/split/version.rb index ef0743f0..0187c1ae 100644 --- a/lib/split/version.rb +++ b/lib/split/version.rb @@ -2,6 +2,6 @@ module Split MAJOR = 3 MINOR = 3 - PATCH = 1 + PATCH = 2 VERSION = [MAJOR, MINOR, PATCH].join('.') end