diff --git a/CHANGELOG.mdown b/CHANGELOG.mdown index 061d045d..41fbdfbe 100644 --- a/CHANGELOG.mdown +++ b/CHANGELOG.mdown @@ -1,3 +1,14 @@ +## 0.8.0 (September 25th, 2014) + +Features: + + - Added new way to calculate the probability an alternative is the winner (@caser, #266, #251) + - support multiple metrics per experiment (@stevenou, #260) + +Bugfixes: + + - Avoiding call to params in EncapsulatedHelper (@afn, #257) + ## 0.7.3 (September 16th, 2014) Features: diff --git a/lib/split/version.rb b/lib/split/version.rb index 0a6603fc..b2f209b2 100644 --- a/lib/split/version.rb +++ b/lib/split/version.rb @@ -1,6 +1,6 @@ module Split MAJOR = 0 - MINOR = 7 - PATCH = 3 + MINOR = 8 + PATCH = 0 VERSION = [MAJOR, MINOR, PATCH].join('.') end