Skip to content

Commit 2ea1bc3

Browse files
mikeproeng37Mike Ng
authored and
Mike Ng
committed
Bump version to 2.2.0 for release (#132)
1 parent 2314b1d commit 2ea1bc3

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## [Unreleased]
2+
Changes that have landed in master but are not yet released.
3+
- fix(whitelisting): Whitelisted variation should continue when no valid variation is found. ([#123](https://github.com/optimizely/php-sdk/pull/123))
4+
- refac: Renames notification-center methods. ([#120](https://github.com/optimizely/php-sdk/pull/120))
5+
- fix: Validate Inputs for activate/track/getVariation. ([#105](https://github.com/optimizely/php-sdk/pull/105))
6+
7+
## 2.2.0
8+
October 29th, 2018
9+
10+
### New Features
11+
- feat(isValid): Adds getter to access isValid attribute. ([#128](https://github.com/optimizely/php-sdk/pull/128))
12+
13+
### Bug fixes
14+
- fix(datafile-parsing): Prevent newer versions datafile. ([#127](https://github.com/optimizely/php-sdk/pull/127))
15+
- fix: Updating dependencies. ([#125](https://github.com/optimizely/php-sdk/pull/125))
16+
- fix(track): Send decisions for all experiments using an event when using track. ([#124](https://github.com/optimizely/php-sdk/pull/124))
17+
118
## 2.1.0
219
June 29th, 2018
320

src/Optimizely/Event/Builder/EventBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class EventBuilder
3737
/**
3838
* @const string Version of the Optimizely PHP SDK.
3939
*/
40-
const SDK_VERSION = '2.1.0';
40+
const SDK_VERSION = '2.2.0';
4141

4242
/**
4343
* @var string URL to send event to.

tests/EventTests/EventBuilderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function setUp()
7373
]],
7474
'revision' => '15',
7575
'client_name' => 'php-sdk',
76-
'client_version' => '2.1.0',
76+
'client_version' => '2.2.0',
7777
'anonymize_ip'=> false,
7878
];
7979
$this->expectedEventHttpVerb = 'POST';

0 commit comments

Comments
 (0)