From a4d0fcb53a2bb824b6d7ceebb1337609a9e24d3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lafr=C3=A9choux?= Date: Fri, 13 May 2022 00:15:45 +0200 Subject: [PATCH] Bump version and update CHANGELOG --- CHANGELOG.rst | 8 ++++++++ src/apispec/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f676427c..8314b2dc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog --------- +5.2.2 (2022-05-13) +****************** + +Bug fixes: + +- Fix schema property ordering regression in ``ApiSpec.to_yaml()`` (:issue:`768`). + Thanks :user:`vorticity` for the PR. + 5.2.1 (2022-05-01) ****************** diff --git a/src/apispec/__init__.py b/src/apispec/__init__.py index 9ec5aa8c..5e6f0297 100644 --- a/src/apispec/__init__.py +++ b/src/apispec/__init__.py @@ -3,5 +3,5 @@ from .core import APISpec from .plugin import BasePlugin -__version__ = "5.2.1" +__version__ = "5.2.2" __all__ = ["APISpec", "BasePlugin"]