Skip to content

Commit e656c1e

Browse files
authored
Change version to 1.0.11dev (nikic#184)
1 parent 4c0c70f commit e656c1e

File tree

2 files changed

+35
-21
lines changed

2 files changed

+35
-21
lines changed

package.xml

Lines changed: 34 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,15 @@
2020
</lead>
2121
<date>2020-09-12</date>
2222
<version>
23-
<release>1.0.10</release>
24-
<api>1.0.10</api>
23+
<release>1.0.11dev</release>
24+
<api>1.0.11dev</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-
- Support attributes syntax change (`#[...]`) in php 8.0.0RC1.
33-
- Change the current AST version from 70 to 80. AST version 80 is no longer experimental.
34-
- Add `ReflectionParameter` defaults for `ast\parse_code` and `ast\get_supported_versions` in php 8.
35-
- Add parameter types and return types to reflection for various global functions.
36-
php-ast was already throwing a `TypeError` when invalid parameter types were received.
37-
- Always throw instead of warning when invalid parameters are passed to the ast\Node constructor.
3832
</notes>
3933
<contents>
4034
<dir name="/">
@@ -140,19 +134,39 @@
140134
<extsrcrelease />
141135
<changelog>
142136
<release>
143-
<date>2020-09-02</date>
144-
<version>
145-
<release>1.0.9</release>
146-
<api>1.0.9</api>
147-
</version>
148-
<stability>
149-
<release>stable</release>
150-
<api>stable</api>
151-
</stability>
152-
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
153-
<notes>
137+
<date>2020-09-12</date>
138+
<version>
139+
<release>1.0.10</release>
140+
<api>1.0.10</api>
141+
</version>
142+
<stability>
143+
<release>stable</release>
144+
<api>stable</api>
145+
</stability>
146+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
147+
<notes>
148+
- Support attributes syntax change (`#[...]`) in php 8.0.0RC1.
149+
- Change the current AST version from 70 to 80. AST version 80 is no longer experimental.
150+
- Add `ReflectionParameter` defaults for `ast\parse_code` and `ast\get_supported_versions` in php 8.
151+
- Add parameter types and return types to reflection for various global functions.
152+
php-ast was already throwing a `TypeError` when invalid parameter types were received.
153+
- Always throw instead of warning when invalid parameters are passed to the ast\Node constructor.
154+
</notes>
155+
</release>
156+
<release>
157+
<date>2020-09-02</date>
158+
<version>
159+
<release>1.0.9</release>
160+
<api>1.0.9</api>
161+
</version>
162+
<stability>
163+
<release>stable</release>
164+
<api>stable</api>
165+
</stability>
166+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
167+
<notes>
154168
- Support API change in php 8.0.0beta3.
155-
</notes>
169+
</notes>
156170
</release>
157171
<release>
158172
<date>2020-08-04</date>

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

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

0 commit comments

Comments
 (0)