Skip to content

Commit 4c5efd5

Browse files
committed
Update current version number
1 parent 5b3b990 commit 4c5efd5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ Basic usage
5959

6060
Code can be parsed using either `ast\parse_code()`, which accepts a code string, or
6161
`ast\parse_file()`, which accepts a file path. Additionally, both functions require a `$version`
62-
argument to ensure forward-compatibility. The current version is 90.
62+
argument to ensure forward-compatibility. The current version is 100.
6363

6464
```php
65-
$ast = ast\parse_code('<?php ...', $version=70);
65+
$ast = ast\parse_code('<?php ...', $version=100);
6666
// or
67-
$ast = ast\parse_file('file.php', $version=70);
67+
$ast = ast\parse_file('file.php', $version=100);
6868
```
6969

7070
The abstract syntax tree returned by these functions consists of `ast\Node` objects.

RELEASE_CHECKLIST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
* Run scripts/generate_ast_stub.php against PHP master.
22
* Update version in php_ast.h to remove dev suffix.
33
* Update version, release date in package.xml.
4+
* Check whether "The current version" in README.md is up to date.
45
* Run `pecl package package.xml`.
56
* Run `pecl install ast-XXX.tgz`.
67
* Commit.

0 commit comments

Comments
 (0)