summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-01-19 00:03:40 +0100
committerAnthon van der Neut <anthon@mnt.org>2017-01-19 00:03:40 +0100
commit2b95b3766e9707635cef87756e5ea321660cd22d (patch)
tree061fcdf1ed47f867f152f5054ed862dca365122f
parent15c7c27f3c39af88b43122d5ddb8907ce5392ecb (diff)
downloadruamel.yaml-2b95b3766e9707635cef87756e5ea321660cd22d.tar.gz
fix #92: typo in import0.13.9
reported by the-corinthian
-rw-r--r--README.rst3
-rw-r--r--__init__.py2
-rw-r--r--compat.py2
3 files changed, 5 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index d9e6ade..8fc7fd9 100644
--- a/README.rst
+++ b/README.rst
@@ -18,6 +18,9 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
+0.13.9 (2017-01-18):
+ - fix for issue 92, wrong import name reported by the-corinthian
+
0.13.8 (2017-01-18):
- fix for issue 91, when a compiler is unavailable reported by Maximilian Hils
- fix for deepcopy issue with TimeStamps not preserving 'T', reported on
diff --git a/__init__.py b/__init__.py
index 7bbfa43..6c0bb60 100644
--- a/__init__.py
+++ b/__init__.py
@@ -9,7 +9,7 @@ from __future__ import absolute_import
_package_data = dict(
full_package_name="ruamel.yaml",
- version_info=(0, 13, 8),
+ version_info=(0, 13, 9),
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
diff --git a/compat.py b/compat.py
index 7a5ba06..4a3f07c 100644
--- a/compat.py
+++ b/compat.py
@@ -14,7 +14,7 @@ except:
try:
from collections import OrderedDict
except ImportError:
- from orderddict import OrderedDict # type: ignore
+ from ordereddict import OrderedDict # type: ignore
# to get the right name import ... as ordereddict doesn't do that
class ordereddict(OrderedDict): # type: ignore