diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 15f4f517..711f191f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog ========= +0.20.1 (2021-10-03) +------------------- + +- move swagger CDN to jsdelivr (unpkg has been flaky) +- bugfix wrong DIST setting in Redoc `#546 `_ +- Allow paginated_name customization [Georgy Komarov] + +Breaking changes / important additions: + +- Hotfix release due to regression in the Redoc template + + 0.20.0 (2021-10-01) ------------------- diff --git a/drf_spectacular/__init__.py b/drf_spectacular/__init__.py index 8befc5d0..d217d2da 100644 --- a/drf_spectacular/__init__.py +++ b/drf_spectacular/__init__.py @@ -1,6 +1,6 @@ import django -__version__ = '0.20.0' +__version__ = '0.20.1' if django.VERSION < (3, 2): default_app_config = 'drf_spectacular.apps.SpectacularConfig'