Skip to content

Commit

Permalink
build: 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beltram committed Jun 13, 2023
1 parent 29089c9 commit 7316527
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions actix-consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"] }
2 changes: 1 addition & 1 deletion actix-producer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion attributes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion book/src/contract/consumer.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand Down
2 changes: 1 addition & 1 deletion book/src/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions stub-consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 7316527

Please sign in to comment.