Skip to content

Commit 2b50a1b

Browse files
committed
Bump to version 1.6.1
1 parent 2c50985 commit 2b50a1b

File tree

3 files changed

+53
-3
lines changed

3 files changed

+53
-3
lines changed

History.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
1.6.1 / 2024-01-11
2+
===================
3+
* Bump actions/setup-python from 4 to 5
4+
* Bump github/codeql-action from 2 to 3
5+
* Use tox to run the test suite against all supported Pythons
6+
* Fix a typo in the README
7+
* Add a test case
8+
* Fix issue with lambda based updates
9+
* Remove unused code from the test suite
10+
* Refactor `tests/test_parser.py`
11+
* Refactor `tests/test_lexer.py`
12+
* Refactor `tests/test_jsonpath_rw_ext.py`
13+
* De-duplicate the parser test cases
14+
* Refactor `tests/test_jsonpath.py`
15+
* Refactor `tests/test_jsonpath.py`
16+
* Refactor `tests/test_exceptions.py`
17+
* Remove a test that merely checks exception inheritance
18+
* Refactor `tests/test_examples.py`
19+
* Add pytest-randomly to shake out auto_id side effects
20+
* Bump actions/checkout from 3 to 4
21+
* Include the test suite in coverage reports
22+
* Remove tests that don't affect coverage and contribute nothing
23+
* Reformat `tests/test_create.py`
24+
* Remove `test_doctests`, which is a no-op
25+
* Demonstrate that there are no doctests
26+
* Remove the `coveralls` dependency
27+
* Migrate `tests/bin/test_jsonpath.py` to use pytest
28+
* remove Python2 crumbs
29+
* Add CodeQL analysis
30+
* Remove the `oslotest` dependency
31+
* Fix running CI against incoming PRs
32+
* Support, and test against, Python 3.12
33+
* Update the currently-tested CPython versions in the README
34+
* Remove an unused Travis CI config file
35+
* Add a Dependabot config to keep GitHub action versions updated
36+
* add a test for the case when root element is a list
37+
* Fix issue with assignment in case root element is a list.
38+
* Fix typo in README
39+
* Fix test commands in Makefile
40+
* Fix .coveragerc path
41+
* Simplify clean in Makefile
42+
* Refactor unit tests for better errors
43+
* test case for existing auto id
44+
* Add more examples to README (thanks @baynes)
45+
* fixed typo
46+
* Don't fail when regex match is attempted on non-strings
47+
* added step in slice
48+
* Add additional tests
49+
* Add `keys` keyword
50+
151
1.6.0 / 2023-09-13
252
===================
353
* Enclose field names containing literals in quotes
@@ -15,7 +65,7 @@
1565
* Use raw strings for regular expressions to avoid DeprecationWarning.
1666
* refactor(package): remove dependency for decorator
1767
* Merge pull request #128 from michaelmior/hashable
18-
* (origin/hashable, hashable) Make path instances hashable
68+
* Make path instances hashable
1969
* Merge pull request #122 from snopoke/snopoke-patch-1
2070
* Add more detail to filter docs.
2171
* remove incorrect parenthesis in filter examples

jsonpath_ng/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setuptools.setup(
66
name='jsonpath-ng',
7-
version='1.6.0',
7+
version='1.6.1',
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)