Skip to content

Commit 39cfc1c

Browse files
authored
prepare for release 3.7.0 (#225)
1 parent 06f4bbf commit 39cfc1c

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Optimizely PHP SDK Changelog
22

3+
## 3.7.0
4+
February 17th, 2021
5+
6+
### New Features:
7+
- Introducing a new primary interface for retrieving feature flag status, configuration and associated experiment decisions for users ([#220](https://github.com/optimizely/php-sdk/pull/220), [#224](https://github.com/optimizely/php-sdk/pull/224)). The new `OptimizelyUserContext` class is instantiated with `createUserContext` and exposes the following APIs to get `OptimizelyDecision`:
8+
9+
- setAttribute
10+
- decide
11+
- decideAll
12+
- decideForKeys
13+
- trackEvent
14+
15+
- For details, refer to our documentation page: https://docs.developers.optimizely.com/full-stack/v4.0/docs/php-sdk.
16+
317
## 3.6.1
418
November 19th, 2020
519

src/Optimizely/Event/Builder/EventBuilder.php

Lines changed: 1 addition & 1 deletion
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.6.1';
41+
const SDK_VERSION = '3.7.0';
4242

4343
/**
4444
* @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
@@ -68,7 +68,7 @@ public function setUp()
6868
]],
6969
'revision' => '15',
7070
'client_name' => 'php-sdk',
71-
'client_version' => '3.6.1',
71+
'client_version' => '3.7.0',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)