Skip to content

Commit 2c1f60a

Browse files
committed
Bump version to 1.6.0
1 parent 32e9a09 commit 2c1f60a

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

History.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
1.6.0 / 2023-09-13
2+
===================
3+
* Enclose field names containing literals in quotes
4+
* Add note about extensions
5+
* Remove documentation status link
6+
* Update supported versions in setup.py
7+
* Add LICENSE file
8+
* Code cleanup
9+
* Remove dependency on six
10+
* Update build status badge
11+
* (origin/github-actions, github-actions) Remove testscenarios dependency
12+
* Remove pytest version constraints
13+
* Add testing with GitHub actions
14+
* Escape back slashes in tests to avoid DeprecationWarning.
15+
* Use raw strings for regular expressions to avoid DeprecationWarning.
16+
* refactor(package): remove dependency for decorator
17+
* Merge pull request #128 from michaelmior/hashable
18+
* (origin/hashable, hashable) Make path instances hashable
19+
* Merge pull request #122 from snopoke/snopoke-patch-1
20+
* Add more detail to filter docs.
21+
* remove incorrect parenthesis in filter examples
22+
* Merge pull request #119 from snopoke/patch-1
23+
* add 'sub' line with function param names
24+
* readme formatting fixes
25+
* chore(history): update
26+
* Update __init__.py
127

228
1.5.3 / 2021-07-05
329
==================

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ To use the extensions below you must import from `jsonpath_ng.ext`.
223223
| (-+*/) | - ``$.foo * 12`` |
224224
| | - ``$.objects[*].cow + $.objects[*].cat`` |
225225
+--------------+-----------------------------------------------+
226-
-
226+
227227
About arithmetic and string
228228
---------------------------
229229

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.5.3'
6+
__version__ = '1.6.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.5.3',
7+
version='1.6.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)