Skip to content

Commit 0a9cd10

Browse files
committed
Prep for v3.4.0 release
1 parent 4cfefe6 commit 0a9cd10

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 3.4.0 (November 9th, 2019)
2+
3+
Features:
4+
- Improve DualAdapter (@santib, #588), adds a new configuration for the DualAdapter, making it possible to keep consistency for logged_out/logged_in users. It's a opt-in flag. No Behavior was changed on this release.
5+
- Make dashboard pagination default "per" param configurable (@alopatin, #597)
6+
7+
Bugfixes:
8+
- Fix `force_alternative` for experiments with incremented version (@giraffate, #568)
9+
- Persist alternative weights (@giraffate, #570)
10+
- Combined experiment performance improvements (@gnanou, #575)
11+
- Handle correctly case when ab_finished is called before ab_test for a user (@gnanou, #577)
12+
- When loading active_experiments, it should not look into user's 'finished' keys (@andrehjr, #582)
13+
14+
Misc:
15+
- Remove `rubyforge_project` from gemspec (@giraffate, #583)
16+
- Fix URLs to replace http with https (@giraffate , #584)
17+
- Lazily include split helpers in ActionController::Base (@hasghari, #586)
18+
- Fix unused variable warnings (@andrehjr, #592)
19+
- Fix ruby warnings (@andrehjr, #593)
20+
- Update rubocop.yml config (@andrehjr, #594)
21+
- Add frozen_string_literal to all files that were missing it (@andrehjr, #595)
22+
123
## 3.3.2 (April 12th, 2019)
224

325
Features:

lib/split/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22
module Split
33
MAJOR = 3
4-
MINOR = 3
5-
PATCH = 2
4+
MINOR = 4
5+
PATCH = 0
66
VERSION = [MAJOR, MINOR, PATCH].join('.')
77
end

0 commit comments

Comments
 (0)