diff options
author | Anthon van der Neut <anthon@mnt.org> | 2019-04-16 08:46:25 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2019-04-16 08:46:25 +0200 |
commit | e0a5db9c8b1df89db6ee0195cb9e304eee34b7ed (patch) | |
tree | eb59e8cdd66a1ca8869f508f5ba9a0eda4e554dd /__init__.py | |
parent | f26a259a769edcf9a62233ea3c605c92dc3c8073 (diff) | |
download | ruamel.yaml-e0a5db9c8b1df89db6ee0195cb9e304eee34b7ed.tar.gz |
YAML 1.2 allows empty implicit keys in block style mappings0.15.92
fixes issue #284
*When this change indeed resolves your problem, please **Close** this issue*.
*(You can do so using the WorkFlow pull-down (close to the top right of this page))*
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 d1481e1..eb374fc 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, 91), - __version__='0.15.91', + version_info=(0, 15, 92), + __version__='0.15.92', 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 |