Skip to content

v0.1.2 fixes #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# php-trie changelog

## v0.1.2

- Fixed versioning inconsistencies
- Fixed `config.h` reverse logic

## v0.1.1

- Added support for PHP 8
Expand Down
26 changes: 21 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
<email>lochbm@yahoo.com</email>
<active>yes</active>
</lead>
<date>2022-05-23</date>
<date>2022-05-25</date>
<version>
<release>0.1.1</release>
<api>0.1.1</api>
<release>0.1.2</release>
<api>0.1.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Added support for PHP 8
- Removed Countable interface implementation
- Fixed versioning inconsistencies
- Fixed config.h reverse logic
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -87,6 +87,22 @@
<providesextension>php_trie</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2022-05-25</date>
<version>
<release>0.1.2</release>
<api>0.1.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Fixed versioning inconsistencies
- Fixed config.h reverse logic
</notes>
</release>
<release>
<date>2022-05-23</date>
<version>
Expand Down
2 changes: 1 addition & 1 deletion php_trie_ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#define PHP_TRIE_EXT_H

#define PHP_TRIE_EXT_EXTNAME "php_trie"
#define PHP_TRIE_EXT_EXTVER "0.1.0"
#define PHP_TRIE_EXT_EXTVER "0.1.2"

#define IS_HATTRIE 1
#define IS_TRIE 2
Expand Down