From 3b7d3bda5cdcf98d3557a7e833c3b70f7389d1a5 Mon Sep 17 00:00:00 2001 From: maxime Date: Wed, 9 Aug 2023 14:24:32 +0200 Subject: [PATCH] [rc] 0.6.28rc2 --- CHANGELOG.md | 5 +++++ halfapi/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5189f7e..9a6b974 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## 0.6.28 +### Dependencies + +Starlette version bumped to 0.31 (had to disable a test to make it work but +seems not important). + ### Development dependencies Python 3.7 is no longer supported (openapi_spec_validator is not compatible). diff --git a/halfapi/__init__.py b/halfapi/__init__.py index fa92b12..26215f8 100644 --- a/halfapi/__init__.py +++ b/halfapi/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -__version__ = '0.6.28rc1' +__version__ = '0.6.28rc2' def version(): return f'HalfAPI version:{__version__}'