Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Optimizely PHP SDK Changelog

## 4.0.2
March 14, 2025

* Fix: Explicitly define class properties #288

## 4.0.1
December 4, 2023

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 @@ -39,7 +39,7 @@ class EventBuilder
/**
* @const string Version of the Optimizely PHP SDK.
*/
const SDK_VERSION = '4.0.1';
const SDK_VERSION = '4.0.2';

/**
* @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 @@ -69,7 +69,7 @@ protected function setUp() : void
]],
'revision' => '15',
'client_name' => 'php-sdk',
'client_version' => '4.0.1',
'client_version' => '4.0.2',
'anonymize_ip'=> false,
'enrich_decisions' => true,
];
Expand Down