Skip to content

Commit

Permalink
Bump version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Sep 13, 2023
1 parent 4c1effd commit 2823309
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions History.md
@@ -1,3 +1,29 @@
1.6.0 / 2023-09-13
===================
* Enclose field names containing literals in quotes
* Add note about extensions
* Remove documentation status link
* Update supported versions in setup.py
* Add LICENSE file
* Code cleanup
* Remove dependency on six
* Update build status badge
* (origin/github-actions, github-actions) Remove testscenarios dependency
* Remove pytest version constraints
* Add testing with GitHub actions
* Escape back slashes in tests to avoid DeprecationWarning.
* Use raw strings for regular expressions to avoid DeprecationWarning.
* refactor(package): remove dependency for decorator
* Merge pull request #128 from michaelmior/hashable
* (origin/hashable, hashable) Make path instances hashable
* Merge pull request #122 from snopoke/snopoke-patch-1
* Add more detail to filter docs.
* remove incorrect parenthesis in filter examples
* Merge pull request #119 from snopoke/patch-1
* add 'sub' line with function param names
* readme formatting fixes
* chore(history): update
* Update __init__.py

1.5.3 / 2021-07-05
==================
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -223,7 +223,7 @@ To use the extensions below you must import from `jsonpath_ng.ext`.
| (-+*/) | - ``$.foo * 12`` |
| | - ``$.objects[*].cow + $.objects[*].cat`` |
+--------------+-----------------------------------------------+
-

About arithmetic and string
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion jsonpath_ng/__init__.py
Expand Up @@ -3,4 +3,4 @@


# Current package version
__version__ = '1.5.3'
__version__ = '1.6.0'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name='jsonpath-ng',
version='1.5.3',
version='1.6.0',
description=(
'A final implementation of JSONPath for Python that aims to be '
'standard compliant, including arithmetic and binary comparison '
Expand Down

0 comments on commit 2823309

Please sign in to comment.