Skip to content

Commit 4199948

Browse files
merge from public after release
2 parents aa29430 + 41fd3d3 commit 4199948

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [3.5.2] - 2019-04-11
6+
### Fixed:
7+
- In the 3.5.1 release, the `VERSION` constant was incorrectly still reporting the version as "3.5.0". The constant is now correct. There are no other changes in this release.
8+
9+
510
## [3.5.1] - 2019-04-03
611
### Fixed:
712
- Setting user attributes to non-string values when a string was expected would cause analytics events not to be processed. The SDK will now convert attribute values to strings as needed.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.5.1
1+
3.5.2

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class LDClient
1313
{
1414
const DEFAULT_BASE_URI = 'https://app.launchdarkly.com';
1515
const DEFAULT_EVENTS_URI = 'https://events.launchdarkly.com';
16-
const VERSION = '3.5.0';
16+
const VERSION = '3.5.2';
1717

1818
/** @var string */
1919
protected $_sdkKey;

0 commit comments

Comments
 (0)