summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-05-01 09:15:35 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-05-01 09:15:35 +0200
commita26ca281e51b646e03b37573f8e7f3a7f8ab1653 (patch)
tree5372fb4255b92cb8b55da354126b8f758a18959d
parent7b4fe4c97b9f51d2c85b54b9d2ef62363bf7b273 (diff)
downloadruamel.yaml-a26ca281e51b646e03b37573f8e7f3a7f8ab1653.tar.gz
push new version0.14.11
-rw-r--r--CHANGES4
-rw-r--r--README.rst2
-rw-r--r--__init__.py4
-rw-r--r--_test/test_documents.py6
4 files changed, 10 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index 120a513..70fcaeb 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+[0, 14, 11]: 2017-05-01
+ - fix for issue 103 allowing implicit documents after document end marker line (``...``)
+ in YAML 1.2
+
[0, 14, 10]: 2017-04-26
- fix problem with emitting using cyaml
diff --git a/README.rst b/README.rst
index 579306e..20527b4 100644
--- a/README.rst
+++ b/README.rst
@@ -18,7 +18,7 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
-NEXT:
+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 b3af799..a8ed004 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, 11, 'dev'),
- __version__='0.14.11.dev',
+ version_info=(0, 14, 11),
+ __version__='0.14.11',
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/_test/test_documents.py b/_test/test_documents.py
index 33fe84f..7cc1083 100644
--- a/_test/test_documents.py
+++ b/_test/test_documents.py
@@ -54,7 +54,7 @@ class TestDocument:
...
- b
...
- """, version=(1,2)))
+ """, version=(1, 2)))
assert docs == [['a'], ['b']]
def test_multi_doc_ends_only_1_1(self):
@@ -65,5 +65,5 @@ class TestDocument:
...
- b
...
- """, version=(1,1)))
- assert False
+ """, version=(1, 1)))
+ assert docs == [['a'], ['b']] # not True, but not reached