bumped version to 1.5.0-DEV
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 7 Dec 2011 07:11:23 +0000 (08:11 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 7 Dec 2011 07:11:23 +0000 (08:11 +0100)
CHANGELOG
composer.json
ext/twig/twig.c
lib/Twig/Environment.php

index 2d05ca6..f0d2816 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+* 1.5.0
+
+ * ...
+
 * 1.4.0 (2011-12-07)
 
  * fixed lexer when using big numbers (> PHP_INT_MAX)
index eb47f6d..3a939ce 100644 (file)
@@ -4,7 +4,7 @@
     "description": "Twig, the flexible, fast, and secure template language for PHP",
     "keywords": ["templating"],
     "homepage": "http://twig.sensiolabs.org",
-    "version": "1.4.0",
+    "version": "1.5.0",
     "license": "BSD",
     "authors": [
         {
index 1c306a2..70a0e2a 100644 (file)
@@ -54,7 +54,7 @@ zend_module_entry twig_module_entry = {
        PHP_RSHUTDOWN(twig),
        PHP_MINFO(twig),
 #if ZEND_MODULE_API_NO >= 20010901
-       "1.4.0",
+       "1.5.0-DEV",
 #endif
        STANDARD_MODULE_PROPERTIES
 };
index d7e5910..6c7550d 100644 (file)
@@ -17,7 +17,7 @@
  */
 class Twig_Environment
 {
-    const VERSION = '1.4.0';
+    const VERSION = '1.5.0-DEV';
 
     protected $charset;
     protected $loader;