diff options
author | Anthon van der Neut <anthon@mnt.org> | 2017-08-14 22:26:01 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2017-08-14 22:26:01 +0200 |
commit | cddd031430973470cefd7412c76bd633233569bb (patch) | |
tree | ee451fffd663a6c60b9154657143d01fe82cc505 /__init__.py | |
parent | 82451b513ea33cce3f228216d5b99b8c046cf182 (diff) | |
download | ruamel.yaml-cddd031430973470cefd7412c76bd633233569bb.tar.gz |
fix for '{"in":{},"out":{}}' no longer parsing, reported by mjalkio on so0.15.30
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index 88730b4..8fd81f8 100644 --- a/__init__.py +++ b/__init__.py @@ -7,8 +7,8 @@ if False: # MYPY _package_data = dict( full_package_name='ruamel.yaml', - version_info=(0, 15, 29), - __version__='0.15.29', + version_info=(0, 15, 30), + __version__='0.15.30', author='Anthon van der Neut', author_email='a.van.der.neut@ruamel.eu', description='ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order', # NOQA |