bumped version to 2.9.1-DEV

This commit is contained in:
Fabien Potencier
2019-04-28 07:58:23 +01:00
parent 82a1c055c8
commit 6463d6377d
2 changed files with 8 additions and 4 deletions
+4
View File
@@ -1,3 +1,7 @@
* 2.9.1 (2019-XX-XX)
* n/a
* 2.9.0 (2019-04-28)
* deprecated returning "false" to remove a Node from NodeVisitorInterface::leaveNode()
+4 -4
View File
@@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '2.9.0';
const VERSION_ID = 20900;
const VERSION = '2.9.1-DEV';
const VERSION_ID = 20901;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 9;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = '';
const RELEASE_VERSION = 1;
const EXTRA_VERSION = 'DEV';
private $charset;
private $loader;