From 7e0898ebdbc2e286fad0d2e94fe8f912e4e37253 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Wed, 23 Oct 2024 02:16:41 +0100 Subject: [PATCH] chore: prepare relase v0.9.4 Signed-off-by: Tiago Castro --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- cli-ng/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fdf2ebf7..fe29b280f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,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). +## [0.9.4] - 2024-10-23 +### Fixed +- Various cli-ng fixes. [PR#547](https://github.com/paperclip-rs/paperclip/pull/547) + ## [0.9.3] - 2024-10-21 ### Added - Experimental openapiv3 cli codegen. [PR#506](https://github.com/paperclip-rs/paperclip/pull/506) @@ -86,7 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Allow automatically adding the module path to the openapi component name, via a feature "path-in-definition" [PR#373](https://github.com/paperclip-rs/paperclip/pull/373) - Add missing ip, ipv4 and ipv6 string format types - Add support for actix-web 4 - - Middleware support does not support non-`BoxBody` response payload types. + - Middleware support does not support non-`BoxBody` response payload types. As a workaround you can use `actix-web::middlware::Compat`. - Add support for Schemas wrapping Generic types (e.g. `DataResponse` where `T` also derives `Apiv2Schema`) [PR#332](https://github.com/paperclip-rs/paperclip/pull/332) diff --git a/Cargo.toml b/Cargo.toml index 84367f588..27d65f1f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip" -version = "0.9.3" +version = "0.9.4" edition = "2018" description = "OpenAPI tooling library for type-safe compile-time checked HTTP APIs" documentation = "https://paperclip-rs.github.io/paperclip/paperclip" diff --git a/cli-ng/Cargo.toml b/cli-ng/Cargo.toml index a8fdb5204..c42555574 100644 --- a/cli-ng/Cargo.toml +++ b/cli-ng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-ng" -version = "0.1.0" +version = "0.1.1" edition = "2018" license = "MIT OR Apache-2.0" keywords = [ "openapi", "openapiv3", "cli", "codegen" ]