summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-08-09 20:03:45 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-08-09 20:03:45 +0200
commitea69043409ed4cd7fdf89044756e5af1791f2f64 (patch)
tree5983d90c5ffc298f50096c748ee65bbed12462ec /CHANGES
parentfabf65a9f1227448d08e6579ac1e8268762ee9d6 (diff)
downloadruamel.yaml-ea69043409ed4cd7fdf89044756e5af1791f2f64.tar.gz
fix issue #147: not able to dump floats0.15.25
This happened when dumping without loading, e.g.: python -c "import ruamel.yaml, sys; ruamel.yaml.round_trip_dump([3.14])" When this fix solves the problem, please close this issue
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES13
1 files changed, 2 insertions, 11 deletions
diff --git a/CHANGES b/CHANGES
index 0526742..ba3a3a4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,5 @@
-[0, 15, 24]: 2017-08-09
- - added ScalarFloat which supports roundtripping of 23.1, 23.100,
- 42.00E+56, 0.0, -0.0 etc. while keeping the format. Underscores in mantissas
- are not preserved/supported (yet, is anybody using that?).
- - (finally) fixed longstanding issue 23 (reported by `Antony Sottile
- <https://bitbucket.org/asottile/>`_), now handling comment between block
- mapping key and value correctly
- - warn on YAML 1.1 float input that is incorrect (triggered by invalid YAML
- provided by Cecil Curry)
- - allow setting of boolean representation (`false`, `true`) by using:
- ``yaml.boolean_representation = [u'False', u'True']``
+[0, 15, 25]: 2017-08-09
+ - fix for problem with dumping (unloaded) floats (reported by eyenseo)
[0, 15, 24]: 2017-08-09
- added ScalarFloat which supports roundtripping of 23.1, 23.100,