summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-03-31 14:26:00 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-03-31 14:26:00 +0200
commitc88298412650a25ee847873d9bfbabb62343f44e (patch)
tree2d4cb34491410460a010685814e6d9cdc96d1aa8
parentf74a8a698ff43121d01d97c25c98fd39ed6098b0 (diff)
downloadruamel.yaml-c88298412650a25ee847873d9bfbabb62343f44e.tar.gz
fix README.rst0.14.4
-rw-r--r--CHANGES3
-rw-r--r--README.rst7
-rw-r--r--__init__.py4
3 files changed, 10 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 62f1a54..fc8d9b9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+[0, 14, 4]: 2017-03-31
+ - fix readme
+
[0, 14, 3]: 2017-03-31
- fix for 0o52 not being a string in YAML 1.1 (reported on
`StackOverflow Q&A 43138503><http://stackoverflow.com/a/43138503/1307905>`_ by
diff --git a/README.rst b/README.rst
index 51223fe..560161e 100644
--- a/README.rst
+++ b/README.rst
@@ -18,10 +18,13 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
+0.14.4 (2017-03-31):
+ - fix readme
+
0.14.3 (2017-03-31):
- fix for 0o52 not being a string in YAML 1.1 (reported on
- `StackOverflow Q&A 43138503><http://stackoverflow.com/a/43138503/1307905>`_ by
- `Frank D <http://stackoverflow.com/users/7796630/frank-d>`_
+ `StackOverflow Q&A 43138503 <http://stackoverflow.com/a/43138503/1307905>`_ by
+ `Frank D <http://stackoverflow.com/users/7796630/frank-d>`_)
0.14.2 (2017-03-23):
- fix for old default pip on Ubuntu 14.04 (reported by Sébastien Maccagnoni-Munch)
diff --git a/__init__.py b/__init__.py
index 42b0a32..b3fe1a0 100644
--- a/__init__.py
+++ b/__init__.py
@@ -10,8 +10,8 @@ from typing import Dict, Any # NOQA
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 14, 3),
- __version__='0.14.3',
+ version_info=(0, 14, 4),
+ __version__='0.14.4',
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