Skip to content

Commit dcda7ed

Browse files
committed
Bump to version 1.7.0
1 parent 1b83307 commit dcda7ed

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

History.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
1.7.0 / 2024-10-11
2+
===================
3+
* Allow raw numeric values to be used as keys
4+
* Add `wherenot`
5+
* Added EZRegex pattern for the split extension regex
6+
* Added negative and * indecies and quotes to `Split` parameters
7+
* Typo: duplicate line removed.
8+
* Added `path` extension that exposes datum's path from the jsonpath expression itself.
9+
* Remove Python 3.7 support
10+
* Only construct the parse table once
11+
* updated test for `jsonpath.py` changes
12+
* fix for Updating a json object fails if the value of a key is boolean #73
13+
* Add Codespaces configuration
14+
* Add `.editorconfig`
15+
* Fix a GitHub workflow schema issue
16+
117
1.6.1 / 2024-01-11
218
===================
319
* Bump actions/setup-python from 4 to 5

jsonpath_ng/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

55
# Current package version
6-
__version__ = '1.6.1'
6+
__version__ = '1.7.0'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setuptools.setup(
66
name='jsonpath-ng',
7-
version='1.6.1',
7+
version='1.7.0',
88
description=(
99
'A final implementation of JSONPath for Python that aims to be '
1010
'standard compliant, including arithmetic and binary comparison '

0 commit comments

Comments
 (0)