diff --git a/CHANGELOG.mdown b/CHANGELOG.mdown index 579d122d..68bcb318 100644 --- a/CHANGELOG.mdown +++ b/CHANGELOG.mdown @@ -1,3 +1,19 @@ +## 0.6.4 (August 8, 2013) + +Features: + + - Add hooks for experiment deletion and resetting (@craigmcnamara, #198) + - Allow Split::Helper to be used outside of a controller (@nfm, #190) + - Show current Rails/Rack Env in dashboard (@rceee, #187) + +Bugfixes: + + - Fix whiplash algorithm when using goals (@swrobel, #193) + +Misc: + + - Refactor dashboard js (@buddhamagnet) + ## 0.6.3 (July 8, 2013) Features: diff --git a/lib/split/version.rb b/lib/split/version.rb index ae51d158..f6d12212 100644 --- a/lib/split/version.rb +++ b/lib/split/version.rb @@ -1,6 +1,6 @@ module Split MAJOR = 0 MINOR = 6 - PATCH = 3 + PATCH = 4 VERSION = [MAJOR, MINOR, PATCH].join('.') end