summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-09-17 12:58:57 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-09-17 12:58:57 +0200
commit6d76abb6e0ec676d062ab5b9212d4e6e310ac0bd (patch)
treeabcefda4ff4958747d46c4f3461bdbaad7aa042f
parent76aad7d81fff34ae456b0601292d3a638117312a (diff)
downloadruamel.yaml-6d76abb6e0ec676d062ab5b9212d4e6e310ac0bd.tar.gz
updated README0.15.34
-rw-r--r--CHANGES3
-rw-r--r--README.rst6
-rw-r--r--__init__.py4
3 files changed, 10 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 8d8d2f0..5b61f46 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+[0, 15, 34]: 2017-09-17
+ - fix for issue 157: CDumper not dumping floats (reported by Jan Smitka)
+
[0, 15, 33]: 2017-08-31
- support for "undefined" round-tripping tagged scalar objects (in addition to
tagged mapping object). Inspired by a use case presented by Matthew Patton
diff --git a/README.rst b/README.rst
index b1a0024..f47e088 100644
--- a/README.rst
+++ b/README.rst
@@ -35,6 +35,9 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
+0.15.34 (2017-09-17):
+ - fix for issue 157: CDumper not dumping floats (reported by Jan Smitka)
+
0.15.33 (2017-08-31):
- support for "undefined" round-tripping tagged scalar objects (in addition to
tagged mapping object). Inspired by a use case presented by Matthew Patton
@@ -96,7 +99,8 @@ ChangeLog
- fix for round_tripping singe excl. mark tags doubling (reported and fix by Jan Brezina)
0.15.21 (2017-07-25):
- - fix for writing unicode in new API, https://stackoverflow.com/a/45281922/1307905
+ - fix for writing unicode in new API, (reported on
+ `StackOverflow <https://stackoverflow.com/a/45281922/1307905>`__
0.15.20 (2017-07-23):
- wheels for windows including C extensions
diff --git a/__init__.py b/__init__.py
index 0a8148e..9da7f51 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,8 +7,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 33),
- __version__='0.15.33',
+ version_info=(0, 15, 34),
+ __version__='0.15.34',
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