Skip to content

Commit 3dc331f

Browse files
committed
Bump version and update changelog
1 parent 96dc1a6 commit 3dc331f

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
Changelog
22
---------
33

4-
6.1.0 (Unreleased)
4+
6.1.0 (2020-04-05)
55
******************
66

77
Features:
88

99
* Add ``fields.DelimitedTuple`` when using marshmallow 3. This behaves as a
1010
combination of ``fields.DelimitedList`` and ``marshmallow.fields.Tuple``. It
1111
takes an iterable of fields, plus a delimiter (defaults to ``,``), and parses
12-
delimiter-separated strings into tuples.
12+
delimiter-separated strings into tuples. (:pr:`509`)
13+
14+
* Add ``__str__`` and ``__repr__`` to MultiDictProxy to make it easier to work
15+
with (:pr:`488`)
16+
17+
Support:
18+
19+
* Various docs updates (:pr:`482`, :pr:`486`, :pr:`489`, :pr:`498`, :pr:`508`).
20+
Thanks :user:`lefterisjp`, :user:`timgates42`, and :user:`ugultopu` for the PRs.
1321

1422

1523
6.0.0 (2020-02-27)

src/webargs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
from webargs.dict2schema import dict2schema
99
from webargs import fields
1010

11-
__version__ = "6.0.0"
11+
__version__ = "6.1.0"
1212
__version_info__ = tuple(LooseVersion(__version__).version)
1313
__all__ = ("dict2schema", "ValidationError", "fields", "missing", "validate")

0 commit comments

Comments
 (0)