bumped version

This commit is contained in:
Fabien Potencier
2019-01-08 09:14:43 +01:00
parent 22bc325859
commit 777912e5b4
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
* 1.36.1 (2018-XX-XX)
* 1.37.0 (2019-XX-XX)
* added a second argument to the join filter (last separator configuration)
+1 -1
View File
@@ -45,7 +45,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.36-dev"
"dev-master": "1.37-dev"
}
}
}
+1 -1
View File
@@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H
#define PHP_TWIG_VERSION "1.36.1-DEV"
#define PHP_TWIG_VERSION "1.37.0-DEV"
#include "php.h"
+4 -4
View File
@@ -16,11 +16,11 @@
*/
class Twig_Environment
{
const VERSION = '1.36.1-DEV';
const VERSION_ID = 13601;
const VERSION = '1.37.0-DEV';
const VERSION_ID = 13700;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 36;
const RELEASE_VERSION = 1;
const MINOR_VERSION = 37;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
protected $charset;