Skip to content

Commit 909ccbc

Browse files
committed
Release version 2.3.0
1 parent de6de6d commit 909ccbc

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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+
## [2.3.0] - 2017-10-06
6+
### Added
7+
- New `flush` method forces events to be published to the LaunchDarkly service. This can be useful if `LDClient` is not automatically destroyed at the end of a request. Thanks @foxted!
8+
9+
### Fixed
10+
- Documentation comment references the correct namespace for `CacheStorageInterface`. Thanks @pmeth!
11+
512
## [2.2.0] - 2017-06-06
613
### Added
714
- Support for [publishing events via ld-relay](README.md#using-ld-relay)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.0
1+
2.3.0

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class LDClient {
1212
const DEFAULT_BASE_URI = 'https://app.launchdarkly.com';
1313
const DEFAULT_EVENTS_URI = 'https://events.launchdarkly.com';
14-
const VERSION = '2.2.0';
14+
const VERSION = '2.3.0';
1515

1616
/** @var string */
1717
protected $_sdkKey;

0 commit comments

Comments
 (0)