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" ]