Skip to content

Commit 9aef7ba

Browse files
chore: Preparing for 3.5.0 release (#214)
1 parent d0c6f5e commit 9aef7ba

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Optimizely PHP SDK Changelog
22

3+
## 3.5.0
4+
October 1st, 2020
5+
6+
### New Features:
7+
- Version targeting using semantic version syntax. [#213](https://github.com/optimizely/php-sdk/pull/213)
8+
- Datafile accessor API added to access current config as a JSON string. [#211](https://github.com/optimizely/php-sdk/pull/211)
9+
310
## 3.4.0
411
July 8th, 2020
512

src/Optimizely/Event/Builder/EventBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class EventBuilder
3838
/**
3939
* @const string Version of the Optimizely PHP SDK.
4040
*/
41-
const SDK_VERSION = '3.4.0';
41+
const SDK_VERSION = '3.5.0';
4242

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

tests/EventTests/EventBuilderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function setUp()
6868
]],
6969
'revision' => '15',
7070
'client_name' => 'php-sdk',
71-
'client_version' => '3.4.0',
71+
'client_version' => '3.5.0',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)