Skip to content

Commit 4844558

Browse files
authored
Merge branch 'master' into oakbani/init-with-sdk-key
2 parents 26dd1a0 + d5c038f commit 4844558

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Diff for: CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 3.3.0
2+
January 27th, 2020
3+
4+
### New Features:
5+
- Added a new API to get project configuration static data.
6+
- Call `getOptimizelyConfig()` to get a snapshot of project configuration static data.
7+
- It returns an `OptimizelyConfig` instance which includes a datafile revision number, all experiments, and feature flags mapped by their key values.
8+
- For more details, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-php](https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-php).
9+
110
## 3.2.0
211
August 28th, 2019
312

Diff for: src/Optimizely/Event/Builder/EventBuilder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Copyright 2016-2019, Optimizely
3+
* Copyright 2016-2020, Optimizely
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -38,7 +38,7 @@ class EventBuilder
3838
/**
3939
* @const string Version of the Optimizely PHP SDK.
4040
*/
41-
const SDK_VERSION = '3.2.0';
41+
const SDK_VERSION = '3.3.0';
4242

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

Diff for: tests/EventTests/EventBuilderTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Copyright 2016-2019, Optimizely
3+
* Copyright 2016-2020, Optimizely
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -68,7 +68,7 @@ public function setUp()
6868
]],
6969
'revision' => '15',
7070
'client_name' => 'php-sdk',
71-
'client_version' => '3.2.0',
71+
'client_version' => '3.3.0',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)