Skip to content

Commit d39c5f6

Browse files
github-actions[bot]sean2077
authored andcommitted
chore(release): 1.1.1 [skip ci]
## [1.1.1](1.1.0...1.1.1) (2025-11-23) ### Performance Improvements * optimize regex compilation and add performance test suite ([61152d7](61152d7))
1 parent 5823cef commit d39c5f6

File tree

4 files changed

+542
-536
lines changed

4 files changed

+542
-536
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.1.1](https://github.com/sean2077/jsonpath-python/compare/1.1.0...1.1.1) (2025-11-23)
2+
3+
### Performance Improvements
4+
5+
* optimize regex compilation and add performance test suite ([61152d7](https://github.com/sean2077/jsonpath-python/commit/61152d74e7dfb7236f21e1690e8e96cfc40c05e0))
6+
17
## [1.1.0](https://github.com/sean2077/jsonpath-python/compare/v1.0.5...1.1.0) (2025-11-23)
28

39
### Fixes

jsonpath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
A more powerful JSONPath implementation in modern python.
66
"""
77

8-
__version__ = "1.1.0"
8+
__version__ = "1.1.1"
99
__author__ = "sean2077"
1010

1111
from .jsonpath import ExprSyntaxError, JSONPath, JSONPathTypeError, compile, search

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jsonpath-python"
7-
version = "1.1.0"
7+
version = "1.1.1"
88
description = "A more powerful JSONPath implementation in modern python"
99
readme = "README.md"
1010
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)