diff options
author | Anthon van der Neut <anthon@mnt.org> | 2018-08-15 21:26:20 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2018-08-15 21:26:20 +0200 |
commit | e14b468cdd14b4c19370bee96af50d1d788d4f6e (patch) | |
tree | ec5d0bbf08df764fe4ba14b04eee558d6166169c /README.rst | |
parent | aaaebefa965eae325adf1bfd800d91765d89fb8b (diff) | |
download | ruamel.yaml-e14b468cdd14b4c19370bee96af50d1d788d4f6e.tar.gz |
fix issue #221 .__add__() and .sort() no longer available on CommentedSeq0.15.57
CommentedSeq + list used to return a list, it now again does so.
sort never worked correctly, it should now (i.e. move the EOL comments along).
*When this change indeed resolves your problem, please **Close** this issue*.
*(You can do so using the WorkFlow pull-down (close to the top right of this page))*
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,7 +4,7 @@ ruamel.yaml ``ruamel.yaml`` is a YAML 1.2 loader/dumper package for Python. -:version: 0.15.56 +:version: 0.15.57 :updated: 2018-08-15 :documentation: http://yaml.readthedocs.io :repository: https://bitbucket.org/ruamel/ @@ -54,9 +54,13 @@ ChangeLog .. should insert NEXT: at the beginning of line for next key (with empty line) +0.15.57 (2018-08-15): + - Fix that CommentedSeq could no longer be used in adding or do a copy + (reported by `Christopher Wright <https://bitbucket.org/CJ-Wright4242/>`__) + 0.15.56 (2018-08-15): - fix issue with ``python -O`` optimizing away code (reported, and detailed cause - pinpointed, by `Alex Grönholm <https://bitbucket.org/agronholm/>`__ + pinpointed, by `Alex Grönholm <https://bitbucket.org/agronholm/>`__) 0.15.55 (2018-08-14): - unmade ``CommentedSeq`` a subclass of ``list``. It is now |