Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Optimizely PHP SDK Changelog

## 3.5.0
October 1st, 2020

### New Features:
- Version targeting using semantic version syntax. [#213](https://github.com/optimizely/php-sdk/pull/213)
- Datafile accessor API added to access current config as a JSON string. [#211](https://github.com/optimizely/php-sdk/pull/211)

## 3.4.0
July 8th, 2020

Expand Down
2 changes: 1 addition & 1 deletion src/Optimizely/Event/Builder/EventBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class EventBuilder
/**
* @const string Version of the Optimizely PHP SDK.
*/
const SDK_VERSION = '3.4.0';
const SDK_VERSION = '3.5.0';

/**
* @var string URL to send event to.
Expand Down
2 changes: 1 addition & 1 deletion tests/EventTests/EventBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function setUp()
]],
'revision' => '15',
'client_name' => 'php-sdk',
'client_version' => '3.4.0',
'client_version' => '3.5.0',
'anonymize_ip'=> false,
'enrich_decisions' => true,
];
Expand Down