File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
12
0.7.1
2
13
=====
3
14
Original file line number Diff line number Diff line change 36
36
# built documents.
37
37
#
38
38
# The short X.Y version.
39
- version = '0.4 '
39
+ version = '0.8 '
40
40
# The full version, including alpha/beta/rc tags.
41
- release = '0.7.1 '
41
+ release = '0.8.0 '
42
42
43
43
# The language for content autogenerated by Sphinx. Refer to documentation
44
44
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
from jmespath import parser
2
2
from jmespath .visitor import Options
3
3
4
- __version__ = '0.7.1 '
4
+ __version__ = '0.8.0 '
5
5
6
6
7
7
def compile (expression ):
Original file line number Diff line number Diff line change 9
9
10
10
setup (
11
11
name = 'jmespath' ,
12
- version = '0.7.1 ' ,
12
+ version = '0.8.0 ' ,
13
13
description = 'JSON Matching Expressions' ,
14
14
long_description = io .open ('README.rst' , encoding = 'utf-8' ).read (),
15
15
author = 'James Saryerwinnie' ,
You can’t perform that action at this time.
0 commit comments