Skip to content

Commit 9f5a688

Browse files
mauerbacmikeproeng37
authored andcommitted
updated changelog for 1.4.0 (#65)
1 parent c5133b2 commit 9f5a688

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,31 @@
1+
-------------------------------------------------------------------------------
2+
## 1.4.0
3+
October 3, 2017
4+
5+
### New Features
6+
* Introduce Numeric Metrics - This allows you to include a floating point value that is used to track numeric values in your experiments.
7+
```
8+
event_tags = {
9+
'category' => 'shoes',
10+
'value' => 13.37 # reserved 'value' tag
11+
}
12+
optimizely_client.track(event_key, user_id, attributes, event_tags)
13+
```
14+
15+
* Introduce Forced Variation - This allows you to force users into variations programmatically in real time for QA purposes without requiring datafile downloads from the network.
16+
```
17+
result = optimizely_client.set_forced_variation(experiment_key, user_id, forced_variation_key)
18+
```
19+
20+
* Upgrade to use new [event API](https://developers.optimizely.com/x/events/api/index.html).
21+
-------------------------------------------------------------------------------
22+
123
-------------------------------------------------------------------------------
224
2.0.0.beta
325
* Introduce feature flags and feature rollouts support.
426
* Introduce variable support via feature flags.
527
-------------------------------------------------------------------------------
28+
629
-------------------------------------------------------------------------------
730
1.3.0
831
* Introduce user profile service support.

optimizely-sdk.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require_relative 'lib/optimizely/version'
44
Gem::Specification.new do |spec|
55
spec.name = "optimizely-sdk"
66
spec.version = Optimizely::VERSION
7-
spec.authors = ["Andrew Delikat", "Haley Bash", "Optimizely"]
7+
spec.authors = ["Optimizely"]
88
spec.email = ["developers@optimizely.com"]
99

1010
spec.summary = "Ruby SDK for Optimizely's testing framework"

0 commit comments

Comments
 (0)