bumped version to 1.40

This commit is contained in:
Fabien Potencier
2019-04-24 15:19:52 +02:00
parent fb6540ce8f
commit a6ec023c09
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
* 1.39.2 (2019-XX-XX)
* 1.40.0 (2019-XX-XX)
* allowed Twig\Loader\FilesystemLoader::findTemplate() to return "null" instead of "false" (same meaning)
* added support for "Twig\Markup" instances in the "in" test
+1 -1
View File
@@ -42,7 +42,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.39-dev"
"dev-master": "1.40-dev"
}
}
}
+1 -1
View File
@@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H
#define PHP_TWIG_VERSION "1.39.2-DEV"
#define PHP_TWIG_VERSION "1.40.0-DEV"
#include "php.h"
+4 -4
View File
@@ -41,11 +41,11 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '1.39.2-DEV';
const VERSION_ID = 13902;
const VERSION = '1.40.0-DEV';
const VERSION_ID = 14000;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 39;
const RELEASE_VERSION = 2;
const MINOR_VERSION = 40;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
protected $charset;