Skip to content

Commit

Permalink
Drop support for 1.0.0-a; 1.0.0 is the minimum version
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Apr 29, 2015
1 parent e0adad1 commit 6fa4b6b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python:

env:
# Oldest supported version
- MARSHMALLOW_VERSION="==1.0.0-a"
- MARSHMALLOW_VERSION="==1.0.0"
# 1.2 line
- MARSHMALLOW_VERSION="==1.2.5"
# Latest release
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ Changelog

Features:

- ``Schema.jsonify`` now takes the same arguments as ``marshmallow.Schema.dump``. Additional keywork arguments are passed to ``flask.jsonify``.
- ``Schema.jsonify`` now takes the same arguments as ``marshmallow.Schema.dump``. Additional keyword arguments are passed to ``flask.jsonify``.


Deprecation/Removal:

- Remove support for ``MARSHMALLOW_DATEFORMAT`` and ``MARSHMALLOW_STRICT`` config options.

Other changes:

- Drop support for marshmallow==1.0.0-a. marshmallow==1.0.0 is the minimum supported version.

0.5.1 (2015-04-27)
******************

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

REQUIRES = [
'Flask',
'marshmallow>=1.0.0-a',
'marshmallow>=1.0.0',
]

class PyTest(TestCommand):
Expand Down

0 comments on commit 6fa4b6b

Please sign in to comment.