Skip to content

Commit c6ee78c

Browse files
committed
Back to dev
1 parent 6e17f49 commit c6ee78c

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

package.xml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</lead>
1515
<date>2019-07-27</date>
1616
<version>
17-
<release>1.0.3</release>
17+
<release>1.0.4dev</release>
1818
<api>1.0.3</api>
1919
</version>
2020
<stability>
@@ -23,10 +23,7 @@
2323
</stability>
2424
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
2525
<notes>
26-
- Fix build error in php 7.4.0alpha3.
27-
- Add `DIM_ALTERNATIVE_SYNTAX` as a flag of `AST_DIM` for `$x{'offset'}` (for php 7.4+)
28-
- Add `PARENTHESIZED_CONDITIONAL` as a flag of `AST_CONDITIONAL` for `($a ? $b : $c)` (for php 7.4+)
29-
- Bugfix: Make `ast\kind_uses_flags(ast\AST_ARROW_FUNC)` true in php 7.3 and lower.
26+
- TBD.
3027
</notes>
3128
<contents>
3229
<dir name="/">
@@ -115,6 +112,24 @@
115112
<providesextension>ast</providesextension>
116113
<extsrcrelease />
117114
<changelog>
115+
<release>
116+
<date>2019-07-27</date>
117+
<version>
118+
<release>1.0.3</release>
119+
<api>1.0.3</api>
120+
</version>
121+
<stability>
122+
<release>stable</release>
123+
<api>stable</api>
124+
</stability>
125+
<license uri="https://github.com/nikic/php-ast/blob/master/LICENSE">BSD-3-Clause</license>
126+
<notes>
127+
- Fix build error in php 7.4.0alpha3.
128+
- Add `DIM_ALTERNATIVE_SYNTAX` as a flag of `AST_DIM` for `$x{'offset'}` (for php 7.4+)
129+
- Add `PARENTHESIZED_CONDITIONAL` as a flag of `AST_CONDITIONAL` for `($a ? $b : $c)` (for php 7.4+)
130+
- Bugfix: Make `ast\kind_uses_flags(ast\AST_ARROW_FUNC)` true in php 7.3 and lower.
131+
</notes>
132+
</release>
118133
<release>
119134
<date>2019-06-30</date>
120135
<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.3"
10+
#define PHP_AST_VERSION "1.0.4dev"
1111

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

0 commit comments

Comments
 (0)