prepared the 2.11.2 release

This commit is contained in:
Fabien Potencier
2019-06-05 13:17:07 +02:00
parent 95212c93e8
commit 84a463403d
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
* 2.12.0 (2019-XX-XX)
* 2.11.2 (2019-06-05)
* fixed macro auto-import
+1 -1
View File
@@ -48,7 +48,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.12-dev"
"dev-master": "2.11-dev"
}
}
}
+5 -5
View File
@@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '2.12.0-DEV';
const VERSION_ID = 21200;
const VERSION = '2.11.2';
const VERSION_ID = 21102;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 12;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const MINOR_VERSION = 11;
const RELEASE_VERSION = 2;
const EXTRA_VERSION = '';
private $charset;
private $loader;