File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
1
+ 0.6.2
2
+ =====
3
+
4
+ * Implement JEP-10, slice projections
5
+ * Fix bug with filter projection parsing
6
+ * Add ``to_array `` function
7
+ * Add ``merge `` function
8
+ * Fix error messages for function argument type errors
Original file line number Diff line number Diff line change 38
38
# The short X.Y version.
39
39
version = '0.4'
40
40
# The full version, including alpha/beta/rc tags.
41
- release = '0.6.1 '
41
+ release = '0.6.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
3
- __version__ = '0.6.1 '
3
+ __version__ = '0.6.2 '
4
4
5
5
6
6
def compile (expression ):
Original file line number Diff line number Diff line change 25
25
26
26
setup (
27
27
name = 'jmespath' ,
28
- version = '0.6.1 ' ,
28
+ version = '0.6.2 ' ,
29
29
description = 'JSON Matching Expressions' ,
30
30
long_description = io .open ('README.rst' , encoding = 'utf-8' ).read (),
31
31
author = 'James Saryerwinnie' ,
You can’t perform that action at this time.
0 commit comments