diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3b740673..0de433b8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ Changelog ========= +0.17.2 (2021-06-15) +------------------- + +- prevent endless loop in extensions when augmenting schema `#426 `_ +- bugfix secondary import cycle (generics.APIView) `#430 `_ +- fix: avoid circular import of/via rest_framework's APIView [Daniel Hahler] + +Breaking changes / important additions: + +- Hotfix release that addresses a carelessly added import in `0.17.1`. In certain use-cases, + this may have led to an import cycle inside DRF. + + 0.17.1 (2021-06-12) ------------------- diff --git a/drf_spectacular/__init__.py b/drf_spectacular/__init__.py index cbe8c741..84d3488f 100644 --- a/drf_spectacular/__init__.py +++ b/drf_spectacular/__init__.py @@ -1 +1 @@ -__version__ = '0.17.1' +__version__ = '0.17.2'