diff --git a/CHANGELOG.rst b/CHANGELOG.rst index db014fd..dc673df 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Next Release (TBD) ================== +* No changes yet. + + +1.1.0 +===== + * Fix concurrency issue with cache (`pr #335 `__) * Added support for Python 3.12-3.14 (`pr #331 `__) diff --git a/jmespath/__init__.py b/jmespath/__init__.py index c2439e3..baf7382 100644 --- a/jmespath/__init__.py +++ b/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): diff --git a/setup.py b/setup.py index d12f4d6..251a124 100644 --- a/setup.py +++ b/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(), author='James Saryerwinnie',