bumped version to 1.35

This commit is contained in:
Fabien Potencier
2017-08-16 08:18:33 +02:00
parent 73ab3a1215
commit 16bfb101f0
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
* 1.34.5 (2017-XX-XX)
* 1.35.0 (2017-XX-XX)
* added circular reference detection when loading templates
+1 -1
View File
@@ -44,7 +44,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.34-dev"
"dev-master": "1.35-dev"
}
}
}
+1 -1
View File
@@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H
#define PHP_TWIG_VERSION "1.34.5-DEV"
#define PHP_TWIG_VERSION "1.35.0-DEV"
#include "php.h"
+4 -4
View File
@@ -16,11 +16,11 @@
*/
class Twig_Environment
{
const VERSION = '1.34.5-DEV';
const VERSION_ID = 13405;
const VERSION = '1.35.0-DEV';
const VERSION_ID = 13500;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 34;
const RELEASE_VERSION = 5;
const MINOR_VERSION = 35;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
protected $charset;