Skip to content

Commit 113e782

Browse files
committed
Back to dev
1 parent a6e1f88 commit 113e782

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

package.xml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,16 @@
1414
</lead>
1515
<date>2019-06-30</date>
1616
<version>
17-
<release>1.0.2</release>
18-
<api>1.0.2</api>
17+
<release>1.0.3dev</release>
18+
<api>1.0.3</api>
1919
</version>
2020
<stability>
2121
<release>stable</release>
2222
<api>stable</api>
2323
</stability>
2424
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
2525
<notes>
26-
- Fix compatibility with (currently) PHP 7.4 and PHP 8.0.
27-
- Support AST_ARROW_FUNC for PHP 7.4.
28-
- Make $version a required parameter for `ast\parse_*`. Previously, the absence would throw a LogicException.
29-
- Make AST version 70 the current version.
26+
- TBD.
3027
</notes>
3128
<contents>
3229
<dir name="/">
@@ -113,6 +110,24 @@
113110
<providesextension>ast</providesextension>
114111
<extsrcrelease />
115112
<changelog>
113+
<release>
114+
<date>2019-06-30</date>
115+
<version>
116+
<release>1.0.2</release>
117+
<api>1.0.2</api>
118+
</version>
119+
<stability>
120+
<release>stable</release>
121+
<api>stable</api>
122+
</stability>
123+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
124+
<notes>
125+
- Fix compatibility with (currently) PHP 7.4 and PHP 8.0.
126+
- Support AST_ARROW_FUNC for PHP 7.4.
127+
- Make $version a required parameter for `ast\parse_*`. Previously, the absence would throw a LogicException.
128+
- Make AST version 70 the current version.
129+
</notes>
130+
</release>
116131
<release>
117132
<date>2019-02-11</date>
118133
<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.2"
10+
#define PHP_AST_VERSION "1.0.3dev"
1111

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

0 commit comments

Comments
 (0)