Skip to content

Commit b3d8296

Browse files
chore(release): 1.1.0 [skip ci]
## [1.1.0](v1.0.5...1.1.0) (2025-11-23) ### Fixes * modernize project structure and fix path output ([#7](#7)) ([7713759](7713759)) * resolve issue [#10](#10) by raising JSONPathTypeError on mixed type sorting ([8ac2080](8ac2080)) * resolve issue [#15](#15) where filters with bracket notation returned empty results ([100bf6f](100bf6f)) * resolve issue [#16](#16) support quoted keys in filters and paths ([6caa9d4](6caa9d4)) * resolve issue [#17](#17) false positive errors and parsing bugs ([47bba25](47bba25)) * resolve issue [#9](#9) by filtering out missing keys in field extractor ([5e38031](5e38031)) ### Features * add search and complie interfaces ([8dcf854](8dcf854)) * add update function to JSONPath class ([#12](#12)) ([d396bc5](d396bc5)) * Custom eval implementation ([22d7154](22d7154)) * resolve issue [#13](#13) by adding support for 'in' operator and regex matching (=~) ([a5e2973](a5e2973))
1 parent 4f07baf commit b3d8296

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [1.1.0](https://github.com/sean2077/jsonpath-python/compare/v1.0.5...1.1.0) (2025-11-23)
2+
3+
### Fixes
4+
5+
* modernize project structure and fix path output ([#7](https://github.com/sean2077/jsonpath-python/issues/7)) ([7713759](https://github.com/sean2077/jsonpath-python/commit/7713759874626fb9595c58d7e7f8e6a6cee2c7ce))
6+
* resolve issue [#10](https://github.com/sean2077/jsonpath-python/issues/10) by raising JSONPathTypeError on mixed type sorting ([8ac2080](https://github.com/sean2077/jsonpath-python/commit/8ac2080c1ff5b520b66a8e5f22a6d0a025d6776f))
7+
* resolve issue [#15](https://github.com/sean2077/jsonpath-python/issues/15) where filters with bracket notation returned empty results ([100bf6f](https://github.com/sean2077/jsonpath-python/commit/100bf6fda10d9802cff7223e443a11fb63f1409a))
8+
* resolve issue [#16](https://github.com/sean2077/jsonpath-python/issues/16) support quoted keys in filters and paths ([6caa9d4](https://github.com/sean2077/jsonpath-python/commit/6caa9d4e0e9a95363edc6024b41d5b8ea5e785c0))
9+
* resolve issue [#17](https://github.com/sean2077/jsonpath-python/issues/17) false positive errors and parsing bugs ([47bba25](https://github.com/sean2077/jsonpath-python/commit/47bba251233b8f96963dc22e2e83238b417e332a))
10+
* resolve issue [#9](https://github.com/sean2077/jsonpath-python/issues/9) by filtering out missing keys in field extractor ([5e38031](https://github.com/sean2077/jsonpath-python/commit/5e38031611c3623910150320760abd5c852c93aa))
11+
12+
### Features
13+
14+
* add search and complie interfaces ([8dcf854](https://github.com/sean2077/jsonpath-python/commit/8dcf854d467ebf1dfa3587eedfb5292ebc089c78))
15+
* add update function to JSONPath class ([#12](https://github.com/sean2077/jsonpath-python/issues/12)) ([d396bc5](https://github.com/sean2077/jsonpath-python/commit/d396bc5c2e19d3f081a76eed7e95a893f0d7cd5e))
16+
* Custom eval implementation ([22d7154](https://github.com/sean2077/jsonpath-python/commit/22d7154560dbc3eca2e6025f95cce4dd4b8654d9))
17+
* resolve issue [#13](https://github.com/sean2077/jsonpath-python/issues/13) by adding support for 'in' operator and regex matching (=~) ([a5e2973](https://github.com/sean2077/jsonpath-python/commit/a5e2973b42f1d6b14d20cae48f250501cb81d341))
18+
119
# Changelog
220

321
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

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.0.6"
8+
__version__ = "1.1.0"
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.0.6"
7+
version = "1.1.0"
88
description = "A more powerful JSONPath implementation in modern python"
99
readme = "README.md"
1010
license = { file = "LICENSE" }

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)