diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e0f40d92c..a537239f6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog --------- +2.15.1 (2018-04-25) ++++++++++++++++++++ + +Bug fixes: + +- Fix behavior when an empty list is passed as the ``only`` argument + (:issue:`772`). Thanks :user:`deckar01` for reporting and thanks + :user:`lafrech` for the fix. + 2.15.0 (2017-12-02) +++++++++++++++++++ diff --git a/marshmallow/__init__.py b/marshmallow/__init__.py index a62d9f7b1..a8e8cee5a 100644 --- a/marshmallow/__init__.py +++ b/marshmallow/__init__.py @@ -14,7 +14,7 @@ from marshmallow.utils import pprint, missing from marshmallow.exceptions import ValidationError -__version__ = '2.15.0' +__version__ = '2.15.1' __author__ = 'Steven Loria' __all__ = [