diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fd4725a2..8b12356f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,25 @@ Changelog ========= +0.21.1 (2021-12-20) +------------------- + +- add root level extension setting `#619 `_ +- ease schema browser handling with "Content-Disposition" `#607 `_ +- custom settings per SpectacularAPIView instance `#365 `_ +- Support new X | Y union syntax in Python 3.10 (PEP 604) [Marti Raudsepp] +- upstream release updates, compat test fix for jwt, consistency fix +- add blueprint for django-auth-adfs [1110sillabo] +- use is_list_serializer instead of isinstance() [Roman Sichnyi] +- Fix schema generation for RecursiveField(many=True) [Roman Sichnyi] +- enable clearing auth methods with empty list `#99 `_ +- Fix typos in the code example [Marcin Kurczewski] + +Breaking changes / important additions: + +- Some minor bugfixes and small feature additions. No large schema changes are expected + + 0.21.0 (2021-11-10) ------------------- diff --git a/drf_spectacular/__init__.py b/drf_spectacular/__init__.py index 0a76d404..ab6d6898 100644 --- a/drf_spectacular/__init__.py +++ b/drf_spectacular/__init__.py @@ -1,6 +1,6 @@ import django -__version__ = '0.21.0' +__version__ = '0.21.1' if django.VERSION < (3, 2): default_app_config = 'drf_spectacular.apps.SpectacularConfig'