From 6bbd8c51934c65ec2c315797f6fb4b64bba14dc8 Mon Sep 17 00:00:00 2001 From: Roberto Prevato Date: Wed, 19 Jul 2023 16:26:04 +0200 Subject: [PATCH] Prepare for 1.0.8 --- CHANGELOG.md | 4 ++++ openapidocs/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17416a7..a41d390 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.8] - 2023-07-19 :cat: +- Fixes example generation breaks on explicitly enumerated array elements #31, + by @jjedele. + ## [1.0.7] - 2023-05-01 :toolbox: - Fixes [Markdown missing a newline after simple response types](https://github.com/Neoteroi/essentials-openapi/issues/27). - Fixes [Empty header when operations don't have any tag.](https://github.com/Neoteroi/essentials-openapi/issues/28). diff --git a/openapidocs/__init__.py b/openapidocs/__init__.py index d6780ef..0686169 100644 --- a/openapidocs/__init__.py +++ b/openapidocs/__init__.py @@ -1,2 +1,2 @@ -__version__ = "1.0.7" +__version__ = "1.0.8" VERSION = __version__