Fix formatting of the changelog – part 2

RTD didn't render it properly previously.

Refs #2105
This commit is contained in:
Stefan Wojcik 2019-07-15 09:57:48 +02:00
parent 79454b5eed
commit d09af430e8

View File

@ -3,7 +3,6 @@
Changelog Changelog
========= =========
===========
Development Development
=========== ===========
- (Fill this out as you fix issues and develop your features). - (Fill this out as you fix issues and develop your features).
@ -20,19 +19,16 @@ Development
- ``ListField`` now accepts an optional ``max_length`` parameter. #2110 - ``ListField`` now accepts an optional ``max_length`` parameter. #2110
- The codebase is now formatted using ``black``. #2109 - The codebase is now formatted using ``black``. #2109
=================
Changes in 0.18.2 Changes in 0.18.2
================= =================
- Replace deprecated PyMongo v2.x methods with their v3.x equivalents in the ``SequenceField``. #2097 - Replace deprecated PyMongo v2.x methods with their v3.x equivalents in the ``SequenceField``. #2097
- Various code clarity and documentation improvements. - Various code clarity and documentation improvements.
=================
Changes in 0.18.1 Changes in 0.18.1
================= =================
- Fix a bug introduced in 0.18.0 which was causing ``Document.save`` to update all the fields instead of updating only the modified fields. This bug only occurred when using a custom PK. #2082 - Fix a bug introduced in 0.18.0 which was causing ``Document.save`` to update all the fields instead of updating only the modified fields. This bug only occurred when using a custom PK. #2082
- Add Python 3.7 to Travis CI. #2058 - Add Python 3.7 to Travis CI. #2058
=================
Changes in 0.18.0 Changes in 0.18.0
================= =================
- Drop support for EOL'd MongoDB v2.6, v3.0, and v3.2. - Drop support for EOL'd MongoDB v2.6, v3.0, and v3.2.
@ -56,7 +52,6 @@ Changes in 0.18.0
- ``disconnect`` now clears the cached attribute ``Document._collection``. - ``disconnect`` now clears the cached attribute ``Document._collection``.
- BREAKING CHANGE: ``EmbeddedDocument.save`` & ``.reload`` no longer exist. #1552 - BREAKING CHANGE: ``EmbeddedDocument.save`` & ``.reload`` no longer exist. #1552
=================
Changes in 0.17.0 Changes in 0.17.0
================= =================
- POTENTIAL BREAKING CHANGE: All result fields are now passed, including internal fields (``_cls``, ``_id``) when using ``QuerySet.as_pymongo``. #1976 - POTENTIAL BREAKING CHANGE: All result fields are now passed, including internal fields (``_cls``, ``_id``) when using ``QuerySet.as_pymongo``. #1976
@ -68,24 +63,20 @@ Changes in 0.17.0
- Fix test suite and CI to support MongoDB v3.4. #1445 - Fix test suite and CI to support MongoDB v3.4. #1445
- Fix reference fields querying the database on each access if value contains orphan DBRefs. - Fix reference fields querying the database on each access if value contains orphan DBRefs.
=================
Changes in 0.16.3 Changes in 0.16.3
================= =================
- Fix ``$push`` with the ``$position`` operator not working with lists in embedded documents. #1965 - Fix ``$push`` with the ``$position`` operator not working with lists in embedded documents. #1965
=================
Changes in 0.16.2 Changes in 0.16.2
================= =================
- Fix ``Document.save`` that fails when called with ``write_concern=None`` (regression of 0.16.1). #1958 - Fix ``Document.save`` that fails when called with ``write_concern=None`` (regression of 0.16.1). #1958
=================
Changes in 0.16.1 Changes in 0.16.1
================= =================
- Fix ``_cls`` that is not set properly in the ``Document`` constructor (regression). #1950 - Fix ``_cls`` that is not set properly in the ``Document`` constructor (regression). #1950
- Fix a bug in the ``_delta`` method - update of a ``ListField`` depends on an unrelated dynamic field update. #1733 - Fix a bug in the ``_delta`` method - update of a ``ListField`` depends on an unrelated dynamic field update. #1733
- Remove PyMongo's deprecated ``Collection.save`` method and use ``Collection.insert_one`` instead. #1899 - Remove PyMongo's deprecated ``Collection.save`` method and use ``Collection.insert_one`` instead. #1899
=================
Changes in 0.16.0 Changes in 0.16.0
================= =================
- POTENTIAL BREAKING CHANGES: - POTENTIAL BREAKING CHANGES: