Skip to content

Commit 57541b0

Browse files
committed
Bump version number and update change log [skip ci]
1 parent d63dc57 commit 57541b0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Python JSONPath Change Log
22

3+
## Version 1.1.1
4+
5+
**Fixes**
6+
7+
- 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).
8+
39
## Version 1.1.0
410

511
**Fixes**

jsonpath/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2023-present James Prior <[email protected]>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = "1.1.0"
4+
__version__ = "1.1.1"

jsonpath/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@
3131
__all__ = (
3232
"compile",
3333
"CompoundJSONPath",
34-
"find",
3534
"findall_async",
3635
"findall",
3736
"finditer_async",
3837
"finditer",
39-
"first",
4038
"JSONPatch",
4139
"JSONPath",
4240
"JSONPathEnvironment",

0 commit comments

Comments
 (0)