Skip to content

Commit

Permalink
Bump to version 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Jan 11, 2024
1 parent 2c50985 commit 2b50a1b
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 3 deletions.
52 changes: 51 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
1.6.1 / 2024-01-11
===================
* Bump actions/setup-python from 4 to 5
* Bump github/codeql-action from 2 to 3
* Use tox to run the test suite against all supported Pythons
* Fix a typo in the README
* Add a test case
* Fix issue with lambda based updates
* Remove unused code from the test suite
* Refactor `tests/test_parser.py`
* Refactor `tests/test_lexer.py`
* Refactor `tests/test_jsonpath_rw_ext.py`
* De-duplicate the parser test cases
* Refactor `tests/test_jsonpath.py`
* Refactor `tests/test_jsonpath.py`
* Refactor `tests/test_exceptions.py`
* Remove a test that merely checks exception inheritance
* Refactor `tests/test_examples.py`
* Add pytest-randomly to shake out auto_id side effects
* Bump actions/checkout from 3 to 4
* Include the test suite in coverage reports
* Remove tests that don't affect coverage and contribute nothing
* Reformat `tests/test_create.py`
* Remove `test_doctests`, which is a no-op
* Demonstrate that there are no doctests
* Remove the `coveralls` dependency
* Migrate `tests/bin/test_jsonpath.py` to use pytest
* remove Python2 crumbs
* Add CodeQL analysis
* Remove the `oslotest` dependency
* Fix running CI against incoming PRs
* Support, and test against, Python 3.12
* Update the currently-tested CPython versions in the README
* Remove an unused Travis CI config file
* Add a Dependabot config to keep GitHub action versions updated
* add a test for the case when root element is a list
* Fix issue with assignment in case root element is a list.
* Fix typo in README
* Fix test commands in Makefile
* Fix .coveragerc path
* Simplify clean in Makefile
* Refactor unit tests for better errors
* test case for existing auto id
* Add more examples to README (thanks @baynes)
* fixed typo
* Don't fail when regex match is attempted on non-strings
* added step in slice
* Add additional tests
* Add `keys` keyword

1.6.0 / 2023-09-13
===================
* Enclose field names containing literals in quotes
Expand All @@ -15,7 +65,7 @@
* 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
* 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
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.6.0'
__version__ = '1.6.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name='jsonpath-ng',
version='1.6.0',
version='1.6.1',
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 2b50a1b

Please sign in to comment.