Skip to content

Commit e8a82ee

Browse files
committed
chore: prepare for release 3.3.1 (#197)
1 parent b0c4ef7 commit e8a82ee

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.3.1
2+
May 28th, 2020
3+
4+
### Bug Fixes:
5+
- This release adds an SDK key param to Optimizely constructor. The user can now create an Optimizely instance only using an SDK key. Previously the user was required to create a HTTPProjectConfigManager, and pass it as a config manager in the constructor. ([#189](https://github.com/optimizely/php-sdk/pull/189), [#193](https://github.com/optimizely/php-sdk/pull/193))
6+
17
## 3.3.0
28
January 27th, 2020
39

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.3.0';
41+
const SDK_VERSION = '3.3.1';
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.3.0',
71+
'client_version' => '3.3.1',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)