summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-05-14 10:34:47 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-05-14 10:34:47 +0200
commita8aca28b47dfccc259a89464d8bb462d926b73d1 (patch)
tree184f793d800db15d03725e61daf15f783160e6a7
parent6c3fbceff61e679e14aa7c706a4d54fa59f70073 (diff)
downloadruamel.yaml-a8aca28b47dfccc259a89464d8bb462d926b73d1.tar.gz
fix issue #119: deepcopy ignoring subclasses0.14.12
-rw-r--r--CHANGES4
-rw-r--r--README.rst4
-rw-r--r--__init__.py4
3 files changed, 10 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 70fcaeb..26efc3e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+[0, 14, 12]: 2017-05-14
+ - fix for issue 119, deepcopy not returning subclasses (reported and PR by
+ Constantine Evans <cevans@evanslabs.org>)
+
[0, 14, 11]: 2017-05-01
- fix for issue 103 allowing implicit documents after document end marker line (``...``)
in YAML 1.2
diff --git a/README.rst b/README.rst
index 20527b4..b4c3c3e 100644
--- a/README.rst
+++ b/README.rst
@@ -18,6 +18,10 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
+0.14.12 (2017-05-14):
+ - fix for issue 119, deepcopy not returning subclasses (reported and PR by
+ Constantine Evans <cevans@evanslabs.org>)
+
0.14.11 (2017-05-01):
- fix for issue 103 allowing implicit documents after document end marker line (``...``)
in YAML 1.2
diff --git a/__init__.py b/__init__.py
index 05b6ad4..64e093c 100644
--- a/__init__.py
+++ b/__init__.py
@@ -11,8 +11,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 14, 12, 'dev'),
- __version__='0.14.12.dev',
+ version_info=(0, 14, 12),
+ __version__='0.14.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