Skip to content

Commit 8245011

Browse files
committed
Merge branch 'release-0.8.0' into develop
* release-0.8.0: Bump version to 0.8.0 Add changelog for latest release
2 parents 04c57b2 + 388b8b0 commit 8245011

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.8.0
2+
=====
3+
4+
* Improve lexing performance (`issue 84 <https://github.com/jmespath/jmespath.py/pull/84>`__)
5+
* Fix parsing error for multiselect lists (`issue 86 <https://github.com/jmespath/jmespath.py/issues/86>`__)
6+
* Fix issue with escaping single quotes in literal strings (`issue 85 <https://github.com/jmespath/jmespath.py/issues/85>`__)
7+
* Add support for providing your own dict cls to support
8+
ordered dictionaries (`issue 94 <https://github.com/jmespath/jmespath.py/pull/94>`__)
9+
* Add map() function (`issue 95 <https://github.com/jmespath/jmespath.py/pull/95>`__)
10+
11+
112
0.7.1
213
=====
314

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
# built documents.
3737
#
3838
# The short X.Y version.
39-
version = '0.4'
39+
version = '0.8'
4040
# The full version, including alpha/beta/rc tags.
41-
release = '0.7.1'
41+
release = '0.8.0'
4242

4343
# The language for content autogenerated by Sphinx. Refer to documentation
4444
# for a list of supported languages.

jmespath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from jmespath import parser
22
from jmespath.visitor import Options
33

4-
__version__ = '0.7.1'
4+
__version__ = '0.8.0'
55

66

77
def compile(expression):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='jmespath',
12-
version='0.7.1',
12+
version='0.8.0',
1313
description='JSON Matching Expressions',
1414
long_description=io.open('README.rst', encoding='utf-8').read(),
1515
author='James Saryerwinnie',

0 commit comments

Comments
 (0)