bumped version to 1.38

This commit is contained in:
Fabien Potencier
2019-02-15 08:28:13 +01:00
parent 966296ff42
commit 66b708bde8
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
* 1.37.2 (2019-XX-XX)
* 1.38.0 (2019-XX-XX)
* n/a
* changed internal code to use the namespaced classes as much as possible
* 1.37.1 (2019-01-14)
+1 -1
View File
@@ -45,7 +45,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.37-dev"
"dev-master": "1.38-dev"
}
}
}
+1 -1
View File
@@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H
#define PHP_TWIG_VERSION "1.37.2-DEV"
#define PHP_TWIG_VERSION "1.38.0-DEV"
#include "php.h"
+4 -4
View File
@@ -16,11 +16,11 @@
*/
class Twig_Environment
{
const VERSION = '1.37.2-DEV';
const VERSION_ID = 13702;
const VERSION = '1.38.0-DEV';
const VERSION_ID = 13800;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 37;
const RELEASE_VERSION = 2;
const MINOR_VERSION = 38;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
protected $charset;