bumped version to 1.39

This commit is contained in:
Fabien Potencier
2019-04-03 10:28:54 +02:00
parent 1a7fd6b8e8
commit 10cb211d93
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
* 1.38.5 (2019-XX-XX)
* 1.39.0 (2019-XX-XX)
* n/a
+1 -1
View File
@@ -42,7 +42,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.38-dev"
"dev-master": "1.39-dev"
}
}
}
+1 -1
View File
@@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H
#define PHP_TWIG_VERSION "1.38.5-DEV"
#define PHP_TWIG_VERSION "1.39.0-DEV"
#include "php.h"
+4 -4
View File
@@ -41,11 +41,11 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
const VERSION = '1.38.5-DEV';
const VERSION_ID = 13805;
const VERSION = '1.39.0-DEV';
const VERSION_ID = 13900;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 38;
const RELEASE_VERSION = 5;
const MINOR_VERSION = 39;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
protected $charset;