Skip to content

Commit 34462d5

Browse files
Releasing version 3.7.2
1 parent 6e66f49 commit 34462d5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.7.2] - 2020-04-24
6+
### Fixed:
7+
- The SDK could try to send analytics events even if `send_events` had been set to false. This bug was introduced in the 3.6.0 release.
8+
- A `use` statement with the wrong namespace was causing Composer to print a deprecation warning. (Thanks, [bfenton-smugmug](https://github.com/launchdarkly/php-server-sdk/pull/134)!)
9+
10+
511
## [3.7.1] - 2020-01-03
612
### Fixed:
713
- Loosened the Monolog dependency constraint so that it will accept either a 1.x or a 2.x version. This should be compatible with all currently supported PHP versions; the SDK's use of Monolog does not rely on any features that are specific to 1.x. (Thanks, [mrtus](https://github.com/launchdarkly/php-server-sdk/pull/132)!)

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LDClient
2121
* The current SDK version.
2222
* @var string
2323
*/
24-
const VERSION = '3.7.1';
24+
const VERSION = '3.7.2';
2525

2626
/** @var string */
2727
protected $_sdkKey;

0 commit comments

Comments
 (0)