Skip to content

Commit

Permalink
Bump version: 1.7.0 → 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Guerra committed Jan 8, 2025
1 parent 1d16980 commit 1b899fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.7.1 / 2025-01-08
===================
* Fix bool filter type to handle None values

1.7.0 / 2024-10-11
===================
* Allow raw numeric values to be used as keys
Expand Down
2 changes: 1 addition & 1 deletion jsonpath_ng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


# Current package version
__version__ = '1.7.0'
__version__ = '1.7.1'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@


setuptools.setup(
name='jsonpath-ng',
version='1.7.0',
name='dg-jsonpath-ng',
version='1.7.1',
description=(
'A final implementation of JSONPath for Python that aims to be '
'standard compliant, including arithmetic and binary comparison '
'operators and providing clear AST for metaprogramming.'
),
author='Tomas Aparicio',
author_email='tomas@aparicio.me',
url='https://github.com/h2non/jsonpath-ng',
url='https://github.com/denisfrm/jsonpath-ng.git',
license='Apache 2.0',
long_description=io.open('README.rst', encoding='utf-8').read(),
packages=['jsonpath_ng', 'jsonpath_ng.bin', 'jsonpath_ng.ext'],
Expand Down

0 comments on commit 1b899fe

Please sign in to comment.