File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ 1.1.2
2
+ =====
3
+ * Fix unevaluated projection after a string slice
4
+ (`issue #22 <https://github.com/jmespath-community/python-jmespath/issues/22 >`__)
5
+
1
6
1.1.1
2
7
=====
8
+ * JEP-11a Lexical Scoping deprecates the let function.
9
+
10
+ 1.1.0
11
+ =====
3
12
4
13
* JEP-11 Lexical Scoping
5
14
* JEP-13 Object Manipulation functions
Original file line number Diff line number Diff line change 38
38
# The short X.Y version.
39
39
version = '0.8'
40
40
# The full version, including alpha/beta/rc tags.
41
- release = '1.1.1 '
41
+ release = '1.1.2 '
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__ = '1.1.1 '
4
+ __version__ = '1.1.2 '
5
5
6
6
7
7
def compile (expression , options = None ):
Original file line number Diff line number Diff line change 7
7
8
8
setup (
9
9
name = 'jmespath-community' ,
10
- version = '1.1.1 ' ,
10
+ version = '1.1.2 ' ,
11
11
description = 'JSON Matching Expressions' ,
12
12
long_description = io .open ('README.rst' , encoding = 'utf-8' ).read (),
13
13
author = 'James Saryerwinnie, Springcomp' ,
You can’t perform that action at this time.
0 commit comments