Commit ec7d5b53 authored by Fabien Potencier's avatar Fabien Potencier

bumped version to 2.2.x

parent ef11efa6
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
}, },
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.1.x-dev" "dev-master": "2.2.x-dev"
} }
}, },
"minimum-stability": "dev" "minimum-stability": "dev"
......
Changelog Changelog
========= =========
2.1.1 (2017-XX-XX) 2.2.0 (2017-07-23)
------------------ ------------------
* n/a * added json manifest version strategy support
* fixed EsiFragment constructor
* fixed RedirectableUrlMatcher compatibility with Symfony
* fixed compatibility with Pimple 3.2
* fixed WebTestCase compatibility with PHPUnit 6+
2.1.0 (2017-05-03) 2.1.0 (2017-05-03)
------------------ ------------------
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
}, },
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.1.x-dev" "dev-master": "2.2.x-dev"
} }
} }
} }
...@@ -41,7 +41,7 @@ use Silex\Provider\HttpKernelServiceProvider; ...@@ -41,7 +41,7 @@ use Silex\Provider\HttpKernelServiceProvider;
*/ */
class Application extends Container implements HttpKernelInterface, TerminableInterface class Application extends Container implements HttpKernelInterface, TerminableInterface
{ {
const VERSION = '2.1.1-DEV'; const VERSION = '2.2.0-DEV';
const EARLY_EVENT = 512; const EARLY_EVENT = 512;
const LATE_EVENT = -512; const LATE_EVENT = -512;
......
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"require": { "require": {
"php": ">=5.5.9", "php": ">=5.5.9",
"pimple/pimple": "~3.0", "pimple/pimple": "~3.0",
"silex/api": "~2.1" "silex/api": "~2.2"
}, },
"autoload": { "autoload": {
"psr-4": { "Silex\\Provider\\": "" } "psr-4": { "Silex\\Provider\\": "" }
}, },
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.0.x-dev" "dev-master": "2.2.x-dev"
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment