Skip to content

Commit

Permalink
Publish version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
crocodele committed Dec 14, 2023
1 parent 5fabf64 commit c7d6f24
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
42 changes: 30 additions & 12 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<email/>
<active>yes</active>
</lead>
<date>2022-03-20</date>
<date>2023-12-14</date>
<version>
<release>1.0.0</release>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
Expand All @@ -27,16 +27,12 @@
</stability>
<license uri="https://www.php.net/license/3_01.txt">PHP License</license>
<notes>
## 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
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -373,6 +369,7 @@
<file name="00146-2.phpt" role="test"/>
<file name="00156.phpt" role="test"/>
<file name="00158.phpt" role="test"/>
<file name="00164.phpt" role="test"/>
</dir>
<dir name="lex_errs">
<file name="001.phpt" role="test"/>
Expand Down Expand Up @@ -416,6 +413,27 @@
<providesextension>jsonpath</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2023-12-14</date>
<time>13:31:31</time>
<version>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.php.net/license/3_01.txt">PHP License</license>
<notes>
* 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
</notes>
</release>
<release>
<date>2022-03-20</date>
<time>11:43:19</time>
Expand Down
2 changes: 1 addition & 1 deletion php_jsonpath.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c7d6f24

Please sign in to comment.