Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,10 @@ function accepts a boolean argument that determines whether deprecated versions
In the following the changes in the respective AST versions, as well as their current support state,
are listed.

### 85 (experimental)

* Add a `type` child node (for enum type) for all AST_CLASS nodes.

### 80 (current)

Supported since 1.0.10 (2020-09-12).
Expand Down
7 changes: 4 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,18 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2020-09-12</date>
<date>2021-04-20</date>
<version>
<release>1.0.11dev</release>
<api>1.0.11dev</api>
<release>1.0.11</release>
<api>1.0.11</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
<notes>
- Add the experimental AST version 85.
- Support php 8.1 enums, add 'type' (for enum type) to AST_CLASS nodes in AST version 85+.
- Support php 8.1 'never' return type.
</notes>
Expand Down
2 changes: 1 addition & 1 deletion php_ast.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
extern zend_module_entry ast_module_entry;
#define phpext_ast_ptr &ast_module_entry

#define PHP_AST_VERSION "1.0.11dev"
#define PHP_AST_VERSION "1.0.11"

#ifdef PHP_WIN32
# define PHP_AST_API __declspec(dllexport)
Expand Down