From dcda7ede8334c46ce6927b26139f87697eff9634 Mon Sep 17 00:00:00 2001 From: Michael Mior Date: Fri, 11 Oct 2024 11:39:28 -0400 Subject: [PATCH] Bump to version 1.7.0 --- History.md | 16 ++++++++++++++++ jsonpath_ng/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index d022d07..a058357 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,19 @@ +1.7.0 / 2024-10-11 +=================== + * Allow raw numeric values to be used as keys + * Add `wherenot` + * Added EZRegex pattern for the split extension regex + * Added negative and * indecies and quotes to `Split` parameters + * Typo: duplicate line removed. + * Added `path` extension that exposes datum's path from the jsonpath expression itself. + * Remove Python 3.7 support + * Only construct the parse table once + * updated test for `jsonpath.py` changes + * fix for Updating a json object fails if the value of a key is boolean #73 + * Add Codespaces configuration + * Add `.editorconfig` + * Fix a GitHub workflow schema issue + 1.6.1 / 2024-01-11 =================== * Bump actions/setup-python from 4 to 5 diff --git a/jsonpath_ng/__init__.py b/jsonpath_ng/__init__.py index ed6553b..938f88c 100644 --- a/jsonpath_ng/__init__.py +++ b/jsonpath_ng/__init__.py @@ -3,4 +3,4 @@ # Current package version -__version__ = '1.6.1' +__version__ = '1.7.0' diff --git a/setup.py b/setup.py index 31e6bb0..a700ec6 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setuptools.setup( name='jsonpath-ng', - version='1.6.1', + version='1.7.0', description=( 'A final implementation of JSONPath for Python that aims to be ' 'standard compliant, including arithmetic and binary comparison '