Skip to content

Commit

Permalink
chore(pact_matching): Bump minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Apr 16, 2024
1 parent 7900fe5 commit d6125b7
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 38 deletions.
31 changes: 1 addition & 30 deletions rust/Cargo.lock

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

5 changes: 3 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ members = [
"pact_*"
]
exclude = [
"pact_wasm"
"pact_wasm",
"pact_cli"
]
resolver = "2"

[patch.crates-io]
onig = { git = "https://github.com/rust-onig/rust-onig", default-features = false }
pact_models = { path = "pact_models" }
pact_models = { path = "pact_models" }
2 changes: 1 addition & 1 deletion rust/pact_consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ futures = "0.3.29"
itertools = "0.12.0"
lazy_static = "1.4.0"
maplit = "1.0.2"
pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false }
pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false }
pact_mock_server = { version = "~1.2.5", path = "../pact_mock_server", default-features = false }
pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ log = "0.4.20"
maplit = "1.0.2"
multipart = { version = "0.18.0", default-features = false, features = ["client", "mock"] }
onig = { version = "6.4.0", default-features = false }
pact_matching = { version = "~1.1.10", path = "../pact_matching" }
pact_matching = { version = "~1.2.0", path = "../pact_matching" }
pact_mock_server = { version = "~1.2.5", path = "../pact_mock_server" }
pact_models = { version = "~1.1.18", path = "../pact_models" }
pact-plugin-driver = { version = "~0.5.1" }
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_matching/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pact_matching"
version = "1.1.11"
version = "1.2.0"
authors = ["Ronald Holshausen <[email protected]>"]
edition = "2021"
description = "Pact-Rust support library that implements request and response matching logic"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_mock_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ hyper-rustls = { version = "0.24.2", optional = true }
itertools = "0.12.0"
lazy_static = "1.4.0"
maplit = "1.0.2"
pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false }
pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false }
pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false }
rustls = { version = "~0.21.10", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_mock_server_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ maplit = "1.0.2"
itertools = "0.12.0"
log = "0.4.20"
lazy_static = "1.4.0"
pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false }
pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false }
pact_mock_server = { version = "~1.2.5", path = "../pact_mock_server", default-features = false }
pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ itertools = "0.12.0"
lazy_static = "1.4.0"
maplit = "1.0.2"
mime = "0.3.17"
pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false }
pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false }
pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false }
regex = "1.10.2"
Expand Down

0 comments on commit d6125b7

Please sign in to comment.