Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Nov 12, 2023
1 parent 52ac25d commit a649551
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,9 @@ 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.

### 100 (development)
### 100 (current)

Supported since 1.1.1 (TBD).
Supported since 1.1.1 (2023-11-12).

* Add a `type` child node for all AST_CLASS_CONST_GROUP nodes.

Expand Down
10 changes: 6 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,19 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-08-09</date>
<date>2023-11-12</date>
<version>
<release>1.1.1dev</release>
<api>1.1.1dev</api>
<release>1.1.1</release>
<api>1.1.1</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>
- TBD
- Added support for PHP 8.3
- In version 100, `AST_CLASS_CONST_GROUP` nodes have a `type` child node to represent typed class constants.
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -58,6 +59,7 @@
<file name="by_ref_destructuring.phpt" role="test" />
<file name="class_consts.phpt" role="test" />
<file name="class_consts_80.phpt" role="test" />
<file name="class_const_types.phpt" role="test" />
<file name="class_name_version_50.phpt" role="test" />
<file name="class_name_version_70.phpt" role="test" />
<file name="class_on_objects.phpt" role="test" />
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.1.1-dev"
#define PHP_AST_VERSION "1.1.1"

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

0 comments on commit a649551

Please sign in to comment.