From 972e7a56e709fbe84751f8f5bf362eeabe5f6932 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Sun, 3 Apr 2022 19:12:44 +0100 Subject: [PATCH] chore: release 0.7 with actix4 support --- Cargo.toml | 8 ++++---- core/Cargo.toml | 4 ++-- macros/Cargo.toml | 2 +- plugins/actix-web/Cargo.toml | 8 ++++---- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index df89cad86..b2cfc1b18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip" -version = "0.6.1" +version = "0.7.0" 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.4.2", optional = true } -paperclip-core = { path = "core", version = "0.4.1" } -paperclip-macros = { path = "macros", version = "0.5.1", optional = true } +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 } env_logger = { version = "0.8", optional = true } git2 = { version = "0.14", optional = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 377068604..781878a69 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-core" -version = "0.4.1" +version = "0.5.1" authors = ["Ravi Shankar "] edition = "2018" description = "Core types and traits for paperclip OpenAPI tooling library" @@ -10,7 +10,7 @@ homepage = "https://github.com/paperclip-rs/paperclip" repository = "https://github.com/paperclip-rs/paperclip" [dependencies] -paperclip-macros = { path = "../macros", version = "0.5.0" } +paperclip-macros = { path = "../macros", version = "0.6.0" } actix-web2 = { version = "2", optional = true, default-features = false, package = "actix-web" } actix-web3 = { version = "3", optional = true, default-features = false, package = "actix-web" } actix-web4 = { version = "4", optional = true, default-features = false, package = "actix-web" } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 44991e6e3..d6404a57d 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-macros" -version = "0.5.1" +version = "0.6.0" 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 041f9a875..731d9dd5b 100644 --- a/plugins/actix-web/Cargo.toml +++ b/plugins/actix-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paperclip-actix" -version = "0.4.2" +version = "0.5.0" authors = ["Ravi Shankar "] edition = "2018" description = "Paperclip OpenAPI plugin for actix-web framework" @@ -10,8 +10,8 @@ homepage = "https://github.com/paperclip-rs/paperclip" repository = "https://github.com/paperclip-rs/paperclip" [dependencies] -paperclip-core = { path = "../../core", version = "0.4.0", optional = true } -paperclip-macros = { path = "../../macros", version = "0.5.0", features = ["actix"] } +paperclip-core = { path = "../../core", version = "0.5.1", optional = true } +paperclip-macros = { path = "../../macros", version = "0.6.0", features = ["actix"] } futures = "0.3" actix-service1 = { version = "1", package = "actix-service", optional = true } actix-service2 = { version = "2", package = "actix-service", optional = true } @@ -30,5 +30,5 @@ actix3 = ["actix-web3", "actix-service1", "paperclip-core/actix3"] actix4 = ["actix-web4", "actix-service2", "paperclip-core/actix4"] nightly = ["paperclip-core/nightly"] normalize = [] -v3 = ["openapiv3"] +v3 = ["openapiv3", "paperclip-core/v3"] swagger-ui = ["include_dir"]