Skip to content

Commit

Permalink
Bump version number and update change log [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Mar 12, 2024
1 parent d63dc57 commit 57541b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
2 changes: 1 addition & 1 deletion jsonpath/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present James Prior <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "1.1.0"
__version__ = "1.1.1"
2 changes: 0 additions & 2 deletions jsonpath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@
__all__ = (
"compile",
"CompoundJSONPath",
"find",
"findall_async",
"findall",
"finditer_async",
"finditer",
"first",
"JSONPatch",
"JSONPath",
"JSONPathEnvironment",
Expand Down

0 comments on commit 57541b0

Please sign in to comment.