Bump version

This commit is contained in:
Fabien Potencier
2020-08-23 14:03:42 +02:00
parent f9ae0f8237
commit b62e30eff1
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
# 3.0.6 (2020-XX-XX)
# 3.1.0 (2020-XX-XX)
* n/a
* Add support for ES2015 style object initialisation shortcut { a } is the same as { 'a': a }
# 3.0.5 (2020-05-08)
+1 -1
View File
@@ -44,7 +44,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
"dev-master": "3.1-dev"
}
}
}
+4 -4
View File
@@ -38,11 +38,11 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '3.0.6-DEV';
const VERSION_ID = 30006;
const VERSION = '3.1.0-DEV';
const VERSION_ID = 30100;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 0;
const RELEASE_VERSION = 6;
const MINOR_VERSION = 1;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
private $charset;