Skip to content

Commit f32e81a

Browse files
Merge pull request #15 from optimizely/devel
Merge to master
2 parents 525e992 + 903986f commit f32e81a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Optimizely/Event/Builder/EventBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class EventBuilder
3333
/**
3434
* @const string Version of the Optimizely PHP SDK.
3535
*/
36-
const SDK_VERSION = '0.0.1';
36+
const SDK_VERSION = '0.1.0';
3737

3838
/**
3939
* @var string URL to send impression event to.

tests/EventTests/EventBuilderTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function testCreateImpressionEventNoAttributes()
4848
'layerId' => '7719770039',
4949
'visitorId' => 'testUserId',
5050
'clientEngine' => 'php-sdk',
51-
'clientVersion' => '0.0.1',
51+
'clientVersion' => '0.1.0',
5252
'timestamp' => time() * 1000,
5353
'isGlobalHoldback' => false,
5454
'userFeatures' => [],
@@ -82,7 +82,7 @@ public function testCreateImpressionEventWithAttributes()
8282
'layerId' => '7719770039',
8383
'visitorId' => 'testUserId',
8484
'clientEngine' => 'php-sdk',
85-
'clientVersion' => '0.0.1',
85+
'clientVersion' => '0.1.0',
8686
'timestamp' => time() * 1000,
8787
'isGlobalHoldback' => false,
8888
'userFeatures' => [[
@@ -126,7 +126,7 @@ public function testCreateConversionEventNoAttributesNoValue()
126126
'accountId' => '1592310167',
127127
'visitorId' => 'testUserId',
128128
'clientEngine' => 'php-sdk',
129-
'clientVersion' => '0.0.1',
129+
'clientVersion' => '0.1.0',
130130
'userFeatures' => [],
131131
'isGlobalHoldback' => false,
132132
'timestamp' => time() * 1000,
@@ -168,7 +168,7 @@ public function testCreateConversionEventWithAttributesNoValue()
168168
'accountId' => '1592310167',
169169
'visitorId' => 'testUserId',
170170
'clientEngine' => 'php-sdk',
171-
'clientVersion' => '0.0.1',
171+
'clientVersion' => '0.1.0',
172172
'isGlobalHoldback' => false,
173173
'timestamp' => time() * 1000,
174174
'eventFeatures' => [],
@@ -221,7 +221,7 @@ public function testCreateConversionEventNoAttributesWithValue()
221221
'accountId' => '1592310167',
222222
'visitorId' => 'testUserId',
223223
'clientEngine' => 'php-sdk',
224-
'clientVersion' => '0.0.1',
224+
'clientVersion' => '0.1.0',
225225
'userFeatures' => [],
226226
'isGlobalHoldback' => false,
227227
'timestamp' => time() * 1000,
@@ -266,7 +266,7 @@ public function testCreateConversionEventWithAttributesWithValue()
266266
'accountId' => '1592310167',
267267
'visitorId' => 'testUserId',
268268
'clientEngine' => 'php-sdk',
269-
'clientVersion' => '0.0.1',
269+
'clientVersion' => '0.1.0',
270270
'isGlobalHoldback' => false,
271271
'timestamp' => time() * 1000,
272272
'eventFeatures' => [],

0 commit comments

Comments
 (0)