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"