Skip to content

Commit

Permalink
build: 0.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
beltram.maldant committed Jan 12, 2022
1 parent 11eb51b commit 19d6424
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,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.4.12)
server: stubr(0.4.13)

Hello stubr
```
Expand Down
4 changes: 2 additions & 2 deletions actix-consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ edition = "2021"
publish = false

[build-dependencies]
stubr-build = { path = "../build", version = "0.4.12" }
stubr-build = { path = "../build", version = "0.4.13" }
stub-producer = { path = "../stub-producer" }

[dependencies]
actix-web = "3.3.2"

[dev-dependencies]
stubr = { path = "../lib", version = "0.4.12", features = ["verify-actix"] }
stubr = { path = "../lib", version = "0.4.13", features = ["verify-actix"] }
actix-rt = "2.5.0"
asserhttp = { version = "0.2.4", features = ["actix"] }
2 changes: 1 addition & 1 deletion actix-producer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ publish = false
actix-web = "3.3.2"

[dev-dependencies]
stubr = { path = "../lib", version = "0.4.12", features = ["verify-actix"] }
stubr = { path = "../lib", version = "0.4.13", features = ["verify-actix"] }
actix-rt = "2.5.0"
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.4.12"
version = "0.4.13"
edition = "2021"
authors = ["Beltram Maldant"]
description = "Wiremock implemented in Rust"
Expand Down
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.4.12"
version = "0.4.13"
edition = "2021"
authors = ["Beltram Maldant"]
description = "Stubr build plugin"
Expand Down
2 changes: 1 addition & 1 deletion build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ invoke it in a `build.rs` file.
build = "build.rs"

[build-dependencies]
stubr-build = "0.4.12"
stubr-build = "0.4.13"
producer-a = "<version>"
producer-b = "<version>"
```
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.4.12"
version = "0.4.13"
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.4.12", features = ["record"], default-features = false }
stubr = { path = "../lib", version = "0.4.13", features = ["record"], default-features = false }
anyhow = { version = "1.0.52", default-features = false }
directories = "4.0.1"
clap = { version = "3.0.6", default-features = false, features = ["derive"] }
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.4.12"
version = "0.4.13"
edition = "2021"
authors = ["Beltram Maldant"]
description = "Wiremock implemented in Rust"
Expand All @@ -13,7 +13,7 @@ categories = ["command-line-utilities", "development-tools::testing"]
include = ["/src/*", "/Cargo.toml"]

[dependencies]
stubr-attributes = { path = "../attributes", version = "0.4.12", optional = true }
stubr-attributes = { path = "../attributes", version = "0.4.13", optional = true }
wiremock = "0.5.10"
anyhow = { version = "1.0.52", default-features = false }
async-trait = "0.1.52"
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
build = "build.rs"

[build-dependencies]
stubr-build = { path = "../build", version = "0.4.12" }
stubr-build = { path = "../build", version = "0.4.13" }
stub-producer = { path = "../stub-producer" }
actix-producer = { path = "../actix-producer" }

[dev-dependencies]
stubr = { path = "../lib", version = "0.4.12", features = ["attributes"] }
stubr = { path = "../lib", version = "0.4.13", features = ["attributes"] }
asserhttp = { version = "0.2.4", features = ["isahc"] }
isahc = "1.6.0"
async-std = { version = "1.10.0", features = ["attributes"] }

0 comments on commit 19d6424

Please sign in to comment.