diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b621d5..ba8e8ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Python JSONPath Change Log +## Version 1.1.1 + +**Fixes** + +- Fixed evaluation of JSONPath singular queries when they appear in a logical expression and without a comparison operator. Previously we were evaluating logical expressions with the value held by the single element node list, now we treat such filter queries as existence tests. See [#57](https://github.com/jg-rp/python-jsonpath/issues/57). + ## Version 1.1.0 **Fixes** diff --git a/jsonpath/__about__.py b/jsonpath/__about__.py index 89a8f38..e660f3c 100644 --- a/jsonpath/__about__.py +++ b/jsonpath/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2023-present James Prior # # SPDX-License-Identifier: MIT -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/jsonpath/__init__.py b/jsonpath/__init__.py index 8215a3e..7d9f22a 100644 --- a/jsonpath/__init__.py +++ b/jsonpath/__init__.py @@ -31,12 +31,10 @@ __all__ = ( "compile", "CompoundJSONPath", - "find", "findall_async", "findall", "finditer_async", "finditer", - "first", "JSONPatch", "JSONPath", "JSONPathEnvironment",