Skip to content

Commit a7e02e2

Browse files
authored
Merge pull request #59 from launchdarkly/dr/relaxStrictDeps
Relax composer dependency versions
2 parents 3738d6a + 3125691 commit a7e02e2

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
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 Java SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.0.4] - 2017-01-26
6+
### Changed
7+
- Made Composer requirements less strict
8+
59
## [2.0.3] - 2017-01-05
610
### Changed
711
- Fixed botched 2.0.2 release: Better handling of null vs false when evaluating.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.3
1+
2.0.4

composer.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,21 @@
1414
}
1515
],
1616
"require": {
17-
"monolog/monolog": "1.21.0",
17+
"monolog/monolog": "1.21.*",
1818
"php": ">=5.5",
19-
"psr/log": "1.0.0"
19+
"psr/log": "1.0.*"
2020
},
2121
"require-dev": {
22-
"guzzlehttp/guzzle": "6.2.1",
23-
"kevinrob/guzzle-cache-middleware": "1.4.1",
22+
"guzzlehttp/guzzle": "^6.2.1",
23+
"kevinrob/guzzle-cache-middleware": "^1.4.1",
2424
"phpunit/phpunit": ">=4.8.26 <5.4",
2525
"phpdocumentor/phpdocumentor": "2.*",
2626
"predis/predis": "1.0.*",
2727
"zendframework/zend-serializer": "2.7.*"
2828
},
2929
"suggested": {
30-
"guzzlehttp/guzzle": "6.2.1",
31-
"kevinrob/guzzle-cache-middleware": "1.4.1",
32-
"monolog/monolog": "1.21.0",
30+
"guzzlehttp/guzzle": "^6.2.1",
31+
"kevinrob/guzzle-cache-middleware": "^1.4.1",
3332
"predis/predis": "1.0.*"
3433
},
3534
"autoload": {

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111
class LDClient {
1212
const DEFAULT_BASE_URI = 'https://app.launchdarkly.com';
13-
const VERSION = '2.0.3';
13+
const VERSION = '2.0.4';
1414

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

0 commit comments

Comments
 (0)