summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2021-08-21 15:06:26 +0200
committerAnthon van der Neut <anthon@mnt.org>2021-08-21 15:06:26 +0200
commit35d4558a7e4d8eae971a2887de8f139849da13b0 (patch)
treea5e404c7a3575395421a03869199f90b0b553432 /__init__.py
parentd97574a94bca9a6b62511ee14bb633a5fdc2e32e (diff)
downloadruamel.yaml-35d4558a7e4d8eae971a2887de8f139849da13b0.tar.gz
fix for 3940.17.12
when the newly created object has the signature __attrs_attrs__ attribute initialisation is not done using update by by calling __init__()
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py
index 4ecaef9..cbee327 100644
--- a/__init__.py
+++ b/__init__.py
@@ -5,8 +5,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 17, 11),
- __version__='0.17.11',
+ version_info=(0, 17, 12),
+ __version__='0.17.12',
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