Skip to content

Commit b33d751

Browse files
Updated the Changelog for 1.5.0 release. (#78)
* Updated the Changelog for 1.5.0 release. * Added more description to the CHANGELOG. * Bumped release version to 1.5.0 * Changed the hard-coded test client_version reference to refer to the const defined in the EventBuilder class. * Bumped the test file to 1.5.0.
1 parent c7b1bd1 commit b33d751

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.0
2+
- Added support for notification listeners.
3+
- Added support for IP anonymization.
4+
15
## 1.4.0
26
- Added support for Numeric Metrics.
37
- Switched to new event API.

src/Optimizely/Event/Builder/EventBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class EventBuilder
3636
/**
3737
* @const string Version of the Optimizely PHP SDK.
3838
*/
39-
const SDK_VERSION = '1.4.0';
39+
const SDK_VERSION = '1.5.0';
4040

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

tests/EventTests/EventBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function setUp()
6969
]],
7070
'revision' => '15',
7171
'client_name' => 'php-sdk',
72-
'client_version' => '1.4.0',
72+
'client_version' => '1.5.0',
7373
'anonymize_ip'=> false,
7474
];
7575
$this->expectedEventHttpVerb = 'POST';

0 commit comments

Comments
 (0)