diff --git a/actix-consumer/Cargo.toml b/actix-consumer/Cargo.toml index 1ca6b0b0..dd59699a 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.1" } +stubr-build = { path = "../build", version = "0.6.2" } 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.1", features = ["verify-actix", "record-actix"] } +stubr = { path = "../lib", version = "0.6.2", 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 3610fe1e..a711199c 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.1", features = ["verify-actix", "record-actix"] } +stubr = { path = "../lib", version = "0.6.2", 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 dfe5f3a5..4bcf1852 100644 --- a/attributes/Cargo.toml +++ b/attributes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr-attributes" -version = "0.6.1" +version = "0.6.2" 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 836a947b..b627ab5f 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.1" +stubr-build = "0.6.2" actix-producer = "0.1.0" ``` diff --git a/book/src/docker.md b/book/src/docker.md index b4559f49..fa4c8ca0 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.1) +server: stubr(0.6.2) Hello stubr ``` \ No newline at end of file diff --git a/build/Cargo.toml b/build/Cargo.toml index 10d94321..a95e601c 100644 --- a/build/Cargo.toml +++ b/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr-build" -version = "0.6.1" +version = "0.6.2" edition = "2021" authors = ["Beltram Maldant"] description = "Stubr build plugin" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bd35fee9..fbefe0cb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr-cli" -version = "0.6.1" +version = "0.6.2" 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.1", features = ["record-standalone", "grpc"], default-features = false } +stubr = { path = "../lib", version = "0.6.2", 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 e2978424..9d462163 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stubr" -version = "0.6.1" +version = "0.6.2" 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.1", optional = true } +stubr-attributes = { path = "../attributes", version = "0.6.2", 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 056bfcdc..5a5bb33a 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.1" } +stubr-build = { path = "../build", version = "0.6.2" } stub-producer = { path = "../stub-producer" } actix-producer = { path = "../actix-producer" } [dev-dependencies] -stubr = { path = "../lib", version = "0.6.1", features = ["attributes"] } +stubr = { path = "../lib", version = "0.6.2", features = ["attributes"] } asserhttp = { version = "0.6", features = ["isahc"] } isahc = "1.7" async-std = { version = "1.12", features = ["attributes"] }