We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a5b607 commit 7abbf7dCopy full SHA for 7abbf7d
2 files changed
CHANGELOG.rst
@@ -1,6 +1,22 @@
1
Changelog
2
---------
3
4
+6.0.0 (2022-10-15)
5
+******************
6
+
7
+Features:
8
9
+- Support ``fields.Enum`` (:pr:`802`).
10
+- *Backwards-incompatible*: Change ``MarshmallowPlugin.map_to_openapi_type``
11
+ from a decorator to a classic function, taking a field as first argument
12
+ (:pr:`804`).
13
+- *Backwards-incompatible*: Remove ``validate_spec`` from public API. Users may
14
+ call their validator of choice directly (:pr:`803`).
15
16
+Other changes:
17
18
+- Drop support for marshmallow < 3.18.0 (:pr:`802`).
19
20
6.0.0b1 (2022-10-04)
21
********************
22
src/apispec/__init__.py
@@ -3,5 +3,5 @@
from .core import APISpec
from .plugin import BasePlugin
-__version__ = "6.0.0b1"
+__version__ = "6.0.0"
__all__ = ["APISpec", "BasePlugin"]
0 commit comments