diff --git a/CHANGELOG.md b/CHANGELOG.md index e04e9ca86..5cecbcb4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly Java SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.0.4] - 2017-01-26 +### Changed +- Made Composer requirements less strict + ## [2.0.3] - 2017-01-05 ### Changed - Fixed botched 2.0.2 release: Better handling of null vs false when evaluating. diff --git a/VERSION b/VERSION index 6acdb4428..26e33797a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.3 \ No newline at end of file +2.0.4 \ No newline at end of file diff --git a/composer.json b/composer.json index 357083cc5..779ca090a 100644 --- a/composer.json +++ b/composer.json @@ -14,22 +14,21 @@ } ], "require": { - "monolog/monolog": "1.21.0", + "monolog/monolog": "1.21.*", "php": ">=5.5", - "psr/log": "1.0.0" + "psr/log": "1.0.*" }, "require-dev": { - "guzzlehttp/guzzle": "6.2.1", - "kevinrob/guzzle-cache-middleware": "1.4.1", + "guzzlehttp/guzzle": "^6.2.1", + "kevinrob/guzzle-cache-middleware": "^1.4.1", "phpunit/phpunit": ">=4.8.26 <5.4", "phpdocumentor/phpdocumentor": "2.*", "predis/predis": "1.0.*", "zendframework/zend-serializer": "2.7.*" }, "suggested": { - "guzzlehttp/guzzle": "6.2.1", - "kevinrob/guzzle-cache-middleware": "1.4.1", - "monolog/monolog": "1.21.0", + "guzzlehttp/guzzle": "^6.2.1", + "kevinrob/guzzle-cache-middleware": "^1.4.1", "predis/predis": "1.0.*" }, "autoload": { diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index bc4e96ce7..3643665cb 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -10,7 +10,7 @@ */ class LDClient { const DEFAULT_BASE_URI = 'https://app.launchdarkly.com'; - const VERSION = '2.0.3'; + const VERSION = '2.0.4'; /** @var string */ protected $_sdkKey;