diff --git a/package.xml b/package.xml index 22ece8c..9ba7b70 100644 --- a/package.xml +++ b/package.xml @@ -16,9 +16,9 @@ yes - 2022-03-20 + 2023-12-14 - 1.0.0 + 1.0.1 1.0.0 @@ -27,16 +27,12 @@ PHP License -## Changes - -## Bug fixes -- Issue #158 - Skip child filter check on non-arrays @mkaminski1988 (#159) -- Issue #156 - Bubble up filter parsing error @mkaminski1988 (#157) - -## Maintenance -- Remove alpha suffix from PECL install command as we release version 1.0.0 @crocodele (#162) -- Add documentation to describe the notation, along with more examples @crocodele (#160) -- Include PHP 8.2 nightly as a version for test runs on Linux @crocodele (#161) +* Issue #164 - refactor string unescaping by @mkaminski1988 in https://github.com/supermetrics-public/pecl-jsonpath/pull/165 +* Update benchmark chart with benchmarks from latest software versions and run in PHP 8.1 by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/166 +* Remove release-drafter workflow. by @dawitnida in https://github.com/supermetrics-public/pecl-jsonpath/pull/167 +* Add PHP 8.3 nightly on Linux and PHP 8.2 on Windows to builds to run tests on by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/168 +* relax test for 8.3 by @remicollet in https://github.com/supermetrics-public/pecl-jsonpath/pull/169 +* Add exception catching to usage section in README by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/170 @@ -373,6 +369,7 @@ + @@ -416,6 +413,27 @@ jsonpath + + 2023-12-14 + + + 1.0.1 + 1.0.0 + + + stable + stable + + PHP License + +* Issue #164 - refactor string unescaping by @mkaminski1988 in https://github.com/supermetrics-public/pecl-jsonpath/pull/165 +* Update benchmark chart with benchmarks from latest software versions and run in PHP 8.1 by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/166 +* Remove release-drafter workflow. by @dawitnida in https://github.com/supermetrics-public/pecl-jsonpath/pull/167 +* Add PHP 8.3 nightly on Linux and PHP 8.2 on Windows to builds to run tests on by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/168 +* relax test for 8.3 by @remicollet in https://github.com/supermetrics-public/pecl-jsonpath/pull/169 +* Add exception catching to usage section in README by @crocodele in https://github.com/supermetrics-public/pecl-jsonpath/pull/170 + + 2022-03-20 diff --git a/php_jsonpath.h b/php_jsonpath.h index 4c4d460..ff95c11 100644 --- a/php_jsonpath.h +++ b/php_jsonpath.h @@ -24,7 +24,7 @@ extern zend_module_entry jsonpath_module_entry; #define phpext_jsonpath_ptr &jsonpath_module_entry -#define PHP_JSONPATH_VERSION "1.0.0" +#define PHP_JSONPATH_VERSION "1.0.1" #ifdef PHP_WIN32 #define PHP_JSONPATH_API __declspec(dllexport)