Skip to content

Commit

Permalink
chore: prepare for release 3.3.1 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeopt committed May 28, 2020
1 parent b0c4ef7 commit e8a82ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.3.1
May 28th, 2020

### Bug Fixes:
- 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))

## 3.3.0
January 27th, 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.3.0';
const SDK_VERSION = '3.3.1';

/**
* @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.3.0',
'client_version' => '3.3.1',
'anonymize_ip'=> false,
'enrich_decisions' => true,
];
Expand Down

0 comments on commit e8a82ee

Please sign in to comment.