Skip to content

Commit f6464b9

Browse files
authored
Back to 1.0.8-dev (nikic#164)
1 parent 4221ed4 commit f6464b9

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,22 +20,16 @@
2020
</lead>
2121
<date>2020-07-11</date>
2222
<version>
23-
<release>1.0.7</release>
24-
<api>1.0.7</api>
23+
<release>1.0.8dev</release>
24+
<api>1.0.8dev</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 80
33-
- In AST version 80, support returning `mixed` types as an `AST_TYPE` with type `TYPE_MIXED` instead of an `AST_NAME`.
34-
- In AST version 80, support PHP 8.0 attributes for declarations.
35-
- Support PHP 8.0's Match expressions.
36-
- Support PHP 8.0 constructor property promotion, and allow indicating visibility on AST nodes.
37-
Note that `MODIFIER_PUBLIC` and `ast\AST_PARAM` modifiers had overlap in php 7.4,
38-
so the `MODIFIER_*` modifiers are only included in the provided metadata for php 8.0+
32+
- TBD
3933
</notes>
4034
<contents>
4135
<dir name="/">
@@ -136,6 +130,27 @@
136130
<providesextension>ast</providesextension>
137131
<extsrcrelease />
138132
<changelog>
133+
<release>
134+
<date>2020-07-11</date>
135+
<version>
136+
<release>1.0.7</release>
137+
<api>1.0.7</api>
138+
</version>
139+
<stability>
140+
<release>stable</release>
141+
<api>stable</api>
142+
</stability>
143+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
144+
<notes>
145+
- Add the experimental AST version 80
146+
- In AST version 80, support returning `mixed` types as an `AST_TYPE` with type `TYPE_MIXED` instead of an `AST_NAME`.
147+
- In AST version 80, support PHP 8.0 attributes for declarations.
148+
- Support PHP 8.0's Match expressions.
149+
- Support PHP 8.0 constructor property promotion, and allow indicating visibility on AST nodes.
150+
Note that `MODIFIER_PUBLIC` and `ast\AST_PARAM` modifiers had overlap in php 7.4,
151+
so the `MODIFIER_*` modifiers are only included in the provided metadata for php 8.0+
152+
</notes>
153+
</release>
139154
<release>
140155
<date>2020-02-22</date>
141156
<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.7"
10+
#define PHP_AST_VERSION "1.0.8dev"
1111

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

0 commit comments

Comments
 (0)