Skip to content

Commit 801f365

Browse files
authored
Bump current version to 1.0.15-dev (#211)
1 parent c533904 commit 801f365

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

package.xml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,16 @@
2020
</lead>
2121
<date>2021-07-24</date>
2222
<version>
23-
<release>1.0.14</release>
24-
<api>1.0.14</api>
23+
<release>1.0.15dev</release>
24+
<api>1.0.15dev</api>
2525
</version>
2626
<stability>
27-
<release>stable</release>
27+
<release>devel</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-
- Support php 8.1 readonly properties with the flag 'MODIFIER_READONLY'
33-
- Support php 8.1 first-class callable syntax, add the node kind 'AST_CALLABLE_CONVERT'
34-
- Change the current AST version from 80 to the new version 90. AST version 85 is no longer experimental.
32+
- TBD
3533
</notes>
3634
<contents>
3735
<dir name="/">
@@ -144,6 +142,23 @@
144142
<providesextension>ast</providesextension>
145143
<extsrcrelease />
146144
<changelog>
145+
<release>
146+
<date>2021-07-24</date>
147+
<version>
148+
<release>1.0.14</release>
149+
<api>1.0.14</api>
150+
</version>
151+
<stability>
152+
<release>stable</release>
153+
<api>stable</api>
154+
</stability>
155+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
156+
<notes>
157+
- Support php 8.1 readonly properties with the flag 'MODIFIER_READONLY'
158+
- Support php 8.1 first-class callable syntax, add the node kind 'AST_CALLABLE_CONVERT'
159+
- Change the current AST version from 80 to the new version 90. AST version 85 is no longer experimental.
160+
</notes>
161+
</release>
147162
<release>
148163
<date>2021-07-08</date>
149164
<version>
@@ -156,9 +171,9 @@
156171
</stability>
157172
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
158173
<notes>
159-
- Indicate in metadata that 'AST_CLASS_CONST_GROUP' and 'AST_CLASS_CONST_DECL' can have 'MODIFIER_FINAL'
160-
(and any modifier a class element can have, to reflect what the parser can actually parse)
161-
- Support php 8.1 intersection types, add the node kind 'AST_TYPE_INTERSECTION'
174+
- Indicate in metadata that 'AST_CLASS_CONST_GROUP' and 'AST_CLASS_CONST_DECL' can have 'MODIFIER_FINAL'
175+
(and any modifier a class element can have, to reflect what the parser can actually parse)
176+
- Support php 8.1 intersection types, add the node kind 'AST_TYPE_INTERSECTION'
162177
</notes>
163178
</release>
164179
<release>

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

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

0 commit comments

Comments
 (0)