diff --git a/actix-consumer/Cargo.toml b/actix-consumer/Cargo.toml index 43978afc..1ca6b0b0 100644 --- a/actix-consumer/Cargo.toml +++ b/actix-consumer/Cargo.toml @@ -6,7 +6,7 @@ publish = false license = "Apache-2.0" [build-dependencies] -stubr-build = { path = "../build", version = "0.6.0" } +stubr-build = { path = "../build", version = "0.6.1" } actix-producer = { path = "../actix-producer" } [dependencies] @@ -20,6 +20,6 @@ reqwest = { version = "0.11", features = ["json"] } futures = { version = "0.3", features = ["alloc"] } [dev-dependencies] -stubr = { path = "../lib", version = "0.6.0", features = ["verify-actix", "record-actix"] } +stubr = { path = "../lib", version = "0.6.1", features = ["verify-actix", "record-actix"] } asserhttp = { version = "0.6", features = ["actix", "reqwest"] } reqwest = { version = "0.11", features = ["blocking"] } diff --git a/actix-producer/Cargo.toml b/actix-producer/Cargo.toml index fc830362..3610fe1e 100644 --- a/actix-producer/Cargo.toml +++ b/actix-producer/Cargo.toml @@ -12,5 +12,5 @@ serde_json = "1.0" derive_more = "0.99" [dev-dependencies] -stubr = { path = "../lib", version = "0.6.0", features = ["verify-actix", "record-actix"] } +stubr = { path = "../lib", version = "0.6.1", features = ["verify-actix", "record-actix"] } asserhttp = { version = "0.6", features = ["actix"] } \ No newline at end of file diff --git a/attributes/Cargo.toml b/attributes/Cargo.toml index cdd18888..dfe5f3a5 100644 --- a/attributes/Cargo.toml +++ b/attributes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr-attributes" -version = "0.6.0" +version = "0.6.1" edition = "2021" authors = ["Beltram Maldant"] description = "Wiremock implemented in Rust" diff --git a/book/src/contract/consumer.md b/book/src/contract/consumer.md index 4185690a..836a947b 100644 --- a/book/src/contract/consumer.md +++ b/book/src/contract/consumer.md @@ -19,7 +19,7 @@ producers (here we will use `actix-producer`). ```toml [build-dependencies] -stubr-build = "0.6.0" +stubr-build = "0.6.1" actix-producer = "0.1.0" ``` diff --git a/book/src/docker.md b/book/src/docker.md index a518b98d..b4559f49 100644 --- a/book/src/docker.md +++ b/book/src/docker.md @@ -17,7 +17,7 @@ HTTP/1.1 200 OK content-length: 11 content-type: text/plain date: Tue, 23 Mar 2021 13:37:41 GMT -server: stubr(0.6.0) +server: stubr(0.6.1) Hello stubr ``` \ No newline at end of file diff --git a/build/Cargo.toml b/build/Cargo.toml index 23e4b227..10d94321 100644 --- a/build/Cargo.toml +++ b/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr-build" -version = "0.6.0" +version = "0.6.1" edition = "2021" authors = ["Beltram Maldant"] description = "Stubr build plugin" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index fa7f375b..bd35fee9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr-cli" -version = "0.6.0" +version = "0.6.1" edition = "2021" authors = ["Beltram Maldant"] description = "Wiremock implemented in Rust" @@ -17,7 +17,7 @@ name = "stubr" path = "src/main.rs" [dependencies] -stubr = { path = "../lib", version = "0.6.0", features = ["record-standalone", "grpc"], default-features = false } +stubr = { path = "../lib", version = "0.6.1", features = ["record-standalone", "grpc"], default-features = false } anyhow = { version = "1.0", default-features = false } directories = "5.0" clap = { version = "4.0", default-features = false, features = ["derive", "std"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 7c4ae180..c4b1d3ba 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr" -version = "0.6.0" +version = "0.6.1" edition = "2021" authors = ["Beltram Maldant"] description = "Wiremock implemented in Rust" @@ -17,7 +17,7 @@ tonic-build = "0.9" [dependencies] anyhow = "1.0" -stubr-attributes = { path = "../attributes", version = "0.6.0", optional = true } +stubr-attributes = { path = "../attributes", version = "0.6.1", optional = true } async-trait = "0.1" serde_json = { version = "1.0", default-features = false } http-types = { version = "2.12", default-features = false, features = ["hyperium_http"] } diff --git a/stub-consumer/Cargo.toml b/stub-consumer/Cargo.toml index 449c5478..056bfcdc 100644 --- a/stub-consumer/Cargo.toml +++ b/stub-consumer/Cargo.toml @@ -6,12 +6,12 @@ publish = false license = "Apache-2.0" [build-dependencies] -stubr-build = { path = "../build", version = "0.6.0" } +stubr-build = { path = "../build", version = "0.6.1" } stub-producer = { path = "../stub-producer" } actix-producer = { path = "../actix-producer" } [dev-dependencies] -stubr = { path = "../lib", version = "0.6.0", features = ["attributes"] } +stubr = { path = "../lib", version = "0.6.1", features = ["attributes"] } asserhttp = { version = "0.6", features = ["isahc"] } isahc = "1.7" async-std = { version = "1.12", features = ["attributes"] }