From 59fd62f4c9fa27e902ffda96f657919c4c1bf3c6 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Wed, 27 Jul 2022 08:55:17 +0100 Subject: [PATCH] chore: release 0.7.1 - Add support for `PATCH` methods. [PR#422](https://github.com/paperclip-rs/paperclip/pull/422) - Add support for header parameters through the newly introduced `Apiv2Header` derive macro. [PR#413](https://github.com/paperclip-rs/paperclip/pull/413) - Add support for [RapiDoc UI](https://mrin9.github.io/RapiDoc/index.html). [PR#420](https://github.com/paperclip-rs/paperclip/pull/420) - Add example support for derived `Apiv2Schema`. [PR#421](https://github.com/paperclip-rs/paperclip/pull/421) - Add ability to not generate documentation for some operations through the skip attribute on api_v2_schema macro. [PR#423](https://github.com/paperclip-rs/paperclip/pull/423) - Add support for deprecated operations. [PR#424](https://github.com/paperclip-rs/paperclip/pull/424) - Fix missing slash between url parts [PR#416](https://github.com/paperclip-rs/paperclip/pull/416) - Properly support non-BoxBody response payload types [PR#414](https://github.com/paperclip-rs/paperclip/pull/414) - Fix required fields definition when using serde flatten [PR#412](https://github.com/paperclip-rs/paperclip/pull/412) - Fix reference urls not being RFC3986-compliant [PR#411](https://github.com/paperclip-rs/paperclip/pull/411) --- CHANGELOG.md | 2 +- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macros/Cargo.toml | 2 +- plugins/actix-web/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c1045897..2383ea669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## [Unreleased] +## [0.7.1] - 2022-07-27 ### Added - Add support for `PATCH` methods. [PR#422](https://github.com/paperclip-rs/paperclip/pull/422) - Add support for header parameters through the newly introduced `Apiv2Header` derive macro. [PR#413](https://github.com/paperclip-rs/paperclip/pull/413) diff --git a/Cargo.toml b/Cargo.toml index 03d11c25b..0a6ed495d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip" -version = "0.7.0" +version = "0.7.1" authors = ["Ravi Shankar "] edition = "2018" description = "OpenAPI tooling library for type-safe compile-time checked HTTP APIs" @@ -18,9 +18,9 @@ path = "src/bin/main.rs" required-features = ["cli"] [dependencies] -paperclip-actix = { path = "plugins/actix-web", version = "0.5.0", optional = true } -paperclip-core = { path = "core", version = "0.5.1" } -paperclip-macros = { path = "macros", version = "0.6.0", optional = true } +paperclip-actix = { path = "plugins/actix-web", version = "0.5.1", optional = true } +paperclip-core = { path = "core", version = "0.5.2" } +paperclip-macros = { path = "macros", version = "0.6.1", optional = true } env_logger = { version = "0.8", optional = true } git2 = { version = "0.14", optional = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 6df5fea70..8679bf47a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-core" -version = "0.5.1" +version = "0.5.2" authors = ["Ravi Shankar "] edition = "2018" description = "Core types and traits for paperclip OpenAPI tooling library" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index d6404a57d..917d75a75 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-macros" -version = "0.6.0" +version = "0.6.1" authors = ["Ravi Shankar "] edition = "2018" description = "Macros for paperclip OpenAPI tooling library" diff --git a/plugins/actix-web/Cargo.toml b/plugins/actix-web/Cargo.toml index 18fefbe03..297096057 100644 --- a/plugins/actix-web/Cargo.toml +++ b/plugins/actix-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-actix" -version = "0.5.0" +version = "0.5.1" authors = ["Ravi Shankar "] edition = "2018" description = "Paperclip OpenAPI plugin for actix-web framework"