Bump version to 3.1.1-DEV

This commit is contained in:
Fabien Potencier
2020-10-21 15:08:11 +02:00
parent 9a29e1fa7b
commit 4f16844c1c
2 changed files with 8 additions and 4 deletions
+4
View File
@@ -1,3 +1,7 @@
# 3.1.1 (2020-XX-XX)
* n/a
# 3.1.0 (2020-10-21)
* Fix sandbox support when using "include(template_from_string())"
+4 -4
View File
@@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '3.1.0';
const VERSION_ID = 30100;
const VERSION = '3.1.1-DEV';
const VERSION_ID = 30101;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 1;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = '';
const RELEASE_VERSION = 1;
const EXTRA_VERSION = 'DEV';
private $charset;
private $loader;