We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3588951 commit d7eaeeaCopy full SHA for d7eaeea
3 files changed
CHANGELOG
@@ -1,3 +1,7 @@
1
+* 1.40.2 (2019-XX-XX)
2
+
3
+ * n/a
4
5
* 1.40.1 (2019-04-29)
6
7
* fixed regression in NodeTraverser
ext/twig/php_twig.h
@@ -15,7 +15,7 @@
15
#ifndef PHP_TWIG_H
16
#define PHP_TWIG_H
17
18
-#define PHP_TWIG_VERSION "1.40.1"
+#define PHP_TWIG_VERSION "1.40.2-DEV"
19
20
#include "php.h"
21
src/Environment.php
@@ -41,12 +41,12 @@
41
*/
42
class Environment
43
{
44
- const VERSION = '1.40.1';
45
- const VERSION_ID = 14001;
+ const VERSION = '1.40.2-DEV';
+ const VERSION_ID = 14002;
46
const MAJOR_VERSION = 1;
47
const MINOR_VERSION = 40;
48
- const RELEASE_VERSION = 1;
49
- const EXTRA_VERSION = '';
+ const RELEASE_VERSION = 2;
+ const EXTRA_VERSION = 'DEV';
50
51
protected $charset;
52
protected $loader;
0 commit comments