Skip to content

Commit

Permalink
chore: release 0.7.1
Browse files Browse the repository at this point in the history
- Add support for `PATCH` methods. [PR#422](#422)
- Add support for header parameters through the newly introduced `Apiv2Header` derive macro. [PR#413](#413)
- Add support for [RapiDoc UI](https://mrin9.github.io/RapiDoc/index.html). [PR#420](#420)
- Add example support for derived `Apiv2Schema`. [PR#421](#421)
- Add ability to not generate documentation for some operations through the skip attribute on api_v2_schema macro. [PR#423](#423)
- Add support for deprecated operations. [PR#424](#424)

- Fix missing slash between url parts [PR#416](#416)
- Properly support non-BoxBody response payload types [PR#414](#414)
- Fix required fields definition when using serde flatten [PR#412](#412)
- Fix reference urls not being RFC3986-compliant [PR#411](#411)
  • Loading branch information
tiagolobocastro committed Jul 27, 2022
1 parent e0d4989 commit 59fd62f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip"
version = "0.7.0"
version = "0.7.1"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "OpenAPI tooling library for type-safe compile-time checked HTTP APIs"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-core"
version = "0.5.1"
version = "0.5.2"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Core types and traits for paperclip OpenAPI tooling library"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-macros"
version = "0.6.0"
version = "0.6.1"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Macros for paperclip OpenAPI tooling library"
Expand Down
2 changes: 1 addition & 1 deletion plugins/actix-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-actix"
version = "0.5.0"
version = "0.5.1"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Paperclip OpenAPI plugin for actix-web framework"
Expand Down

0 comments on commit 59fd62f

Please sign in to comment.