Skip to content

Commit b8fa288

Browse files
authored
Release ast version 1.0.11 (#203)
1 parent 25f390b commit b8fa288

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,10 @@ function accepts a boolean argument that determines whether deprecated versions
494494
In the following the changes in the respective AST versions, as well as their current support state,
495495
are listed.
496496

497+
### 85 (experimental)
498+
499+
* Add a `type` child node (for enum type) for all AST_CLASS nodes.
500+
497501
### 80 (current)
498502

499503
Supported since 1.0.10 (2020-09-12).

package.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,18 @@
1818
<email>[email protected]</email>
1919
<active>yes</active>
2020
</lead>
21-
<date>2020-09-12</date>
21+
<date>2021-04-20</date>
2222
<version>
23-
<release>1.0.11dev</release>
24-
<api>1.0.11dev</api>
23+
<release>1.0.11</release>
24+
<api>1.0.11</api>
2525
</version>
2626
<stability>
2727
<release>stable</release>
2828
<api>stable</api>
2929
</stability>
3030
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
3131
<notes>
32+
- Add the experimental AST version 85.
3233
- Support php 8.1 enums, add 'type' (for enum type) to AST_CLASS nodes in AST version 85+.
3334
- Support php 8.1 'never' return type.
3435
</notes>

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.11dev"
10+
#define PHP_AST_VERSION "1.0.11"
1111

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

0 commit comments

Comments
 (0)