Skip to content

Commit

Permalink
chore: release 0.7 with actix4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagolobocastro committed Apr 3, 2022
1 parent 14b5849 commit 972e7a5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
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.6.1"
version = "0.7.0"
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.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 }
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-core"
version = "0.4.1"
version = "0.5.1"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Core types and traits for paperclip OpenAPI tooling library"
Expand All @@ -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" }
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.5.1"
version = "0.6.0"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Macros for paperclip OpenAPI tooling library"
Expand Down
8 changes: 4 additions & 4 deletions 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.4.2"
version = "0.5.0"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Paperclip OpenAPI plugin for actix-web framework"
Expand All @@ -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 }
Expand All @@ -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"]

0 comments on commit 972e7a5

Please sign in to comment.