Skip to content

Commit 80cdfb6

Browse files
committed
Back to dev
1 parent e295388 commit 80cdfb6

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

package.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</lead>
1515
<date>2019-02-11</date>
1616
<version>
17-
<release>1.0.1</release>
17+
<release>1.0.2dev</release>
1818
<api>1.0.1</api>
1919
</version>
2020
<stability>
@@ -111,6 +111,25 @@
111111
<providesextension>ast</providesextension>
112112
<extsrcrelease />
113113
<changelog>
114+
<release>
115+
<date>2019-02-11</date>
116+
<version>
117+
<release>1.0.2dev</release>
118+
<api>1.0.1</api>
119+
</version>
120+
<stability>
121+
<release>stable</release>
122+
<api>stable</api>
123+
</stability>
124+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
125+
<notes>
126+
- Fix compatibility with (currenty) PHP 7.4 and PHP 8.0.
127+
- Support BINARY_COALESCE as a flag of AST_ASSIGN_OP for the `??=` operator added in PHP 7.4.
128+
- Add AST version 70 (experimental):
129+
- Version 70 adds AST_PROP_GROUP with type information for property groups.
130+
- Version 70 adds AST_CLASS_NAME for `Foo::class`. Previously this used AST_CLASS_CONST
131+
</notes>
132+
</release>
114133
<release>
115134
<date>2018-10-21</date>
116135
<version>

php_ast.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
extern zend_module_entry ast_module_entry;
88
#define phpext_ast_ptr &ast_module_entry
99

10-
#define PHP_AST_VERSION "1.0.1"
10+
#define PHP_AST_VERSION "1.0.2dev"
1111

1212
#ifdef PHP_WIN32
1313
# define PHP_AST_API __declspec(dllexport)

0 commit comments

Comments
 (0)