Skip to content

Commit c5f8490

Browse files
authored
fix version string (launchdarkly#107)
1 parent 7050328 commit c5f8490

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.2.1] - 2018-07-16
6+
### Fixed:
7+
- The `LDClient::VERSION` constant has been fixed to report the current version. In the previous release, it was still set to 3.1.0.
8+
59
## [3.2.0] - 2018-06-26
610
### Changed:
711
- The client now treats most HTTP 4xx errors as unrecoverable: that is, after receiving such an error, it will take the client offline (for the lifetime of the client instance, which in most PHP applications is just the current request-response cycle). This is because such errors indicate either a configuration problem (invalid SDK key) or a bug, which is not likely to resolve without a restart or an upgrade. This does not apply if the error is 400, 408, 429, or any 5xx error.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0
1+
3.2.1

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class LDClient
1212
{
1313
const DEFAULT_BASE_URI = 'https://app.launchdarkly.com';
1414
const DEFAULT_EVENTS_URI = 'https://events.launchdarkly.com';
15-
const VERSION = '3.1.0';
15+
const VERSION = '3.2.1';
1616

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

0 commit comments

Comments
 (0)