-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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
1 parent
e0d4989
commit 59fd62f
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|