Skip to content

Commit bd93d08

Browse files
committed
Merge branch 'release-0.6.2' into develop
* release-0.6.2: Bump version to 0.6.2 Add changelog for 0.6.2
2 parents f92da26 + 9765003 commit bd93d08

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# The short X.Y version.
3939
version = '0.4'
4040
# The full version, including alpha/beta/rc tags.
41-
release = '0.6.1'
41+
release = '0.6.2'
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,6 +1,6 @@
11
from jmespath import parser
22

3-
__version__ = '0.6.1'
3+
__version__ = '0.6.2'
44

55

66
def compile(expression):

setup.py

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

2626
setup(
2727
name='jmespath',
28-
version='0.6.1',
28+
version='0.6.2',
2929
description='JSON Matching Expressions',
3030
long_description=io.open('README.rst', encoding='utf-8').read(),
3131
author='James Saryerwinnie',

0 commit comments

Comments
 (0)