From c3967718b684a4c984aabe353345d0f68c2fd143 Mon Sep 17 00:00:00 2001 From: Bartlomiej Hirsz Date: Fri, 19 Aug 2022 10:05:40 +0200 Subject: [PATCH] Release 0.3.1 --- docs/releasenotes/0.3.1.rst | 17 +++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 docs/releasenotes/0.3.1.rst diff --git a/docs/releasenotes/0.3.1.rst b/docs/releasenotes/0.3.1.rst new file mode 100644 index 0000000..74ef9be --- /dev/null +++ b/docs/releasenotes/0.3.1.rst @@ -0,0 +1,17 @@ +Roboswag 0.3.1 +=================== +Fixes for missing optional properties in OpenAPi specification file. + +You can install the latest available version by running:: + + pip install --upgrade roboswag + +or to install exactly this version:: + + pip install roboswag==0.3.1 + + +Fixes +------ +- Fallback solution to missing optional tag used for endpoint class names +- Fallback solution to missing optional operationId used for endpoint method names diff --git a/pyproject.toml b/pyproject.toml index 00f9f39..a34f431 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name="roboswag" -version = "0.3.0" +version = "0.3.1" description = "Test framework for auto-generating libraries from OpenAPI specification file." license = "Apache-2.0" authors = ["Mateusz Nojek ", "Bartlomiej Hirsz "]