Bump version

This commit is contained in:
Fabien Potencier
2020-08-23 13:59:06 +02:00
parent 244ef52df6
commit c6927de9e7
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# 1.43.2 (2020-XX-XX)
# 1.44.0 (2020-XX-XX)
* Add support for ES2015 style object initialisation shortcut { a } is the same as { 'a': a }
+1 -1
View File
@@ -46,7 +46,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.43-dev"
"dev-master": "1.44-dev"
}
}
}
+4 -4
View File
@@ -41,11 +41,11 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '1.43.2-DEV';
const VERSION_ID = 14302;
const VERSION = '1.44.0-DEV';
const VERSION_ID = 14400;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 43;
const RELEASE_VERSION = 2;
const MINOR_VERSION = 44;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
protected $charset;