We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e37991 commit 8cb3082Copy full SHA for 8cb3082
3 files changed
CHANGELOG.rst
@@ -1,6 +1,12 @@
1
Next Release (TBD)
2
==================
3
4
+* No changes yet.
5
+
6
7
+1.1.0
8
+=====
9
10
* Fix concurrency issue with cache
11
(`pr #335 <https://github.com/jmespath/jmespath.py/pull/335>`__)
12
* Added support for Python 3.12-3.14 (`pr #331 <https://github.com/jmespath/jmespath.py/pull/331>`__)
jmespath/__init__.py
@@ -1,7 +1,7 @@
from jmespath import parser
from jmespath.visitor import Options
-__version__ = '1.0.1'
+__version__ = '1.1.0'
def compile(expression):
setup.py
@@ -7,7 +7,7 @@
setup(
name='jmespath',
- version='1.0.1',
+ version='1.1.0',
description='JSON Matching Expressions',
long_description=io.open('README.rst', encoding='utf-8').read(),
13
author='James Saryerwinnie',
0 commit comments