From f66caf398f7dc4f5d2e612abc02fd2d88bf24d3d Mon Sep 17 00:00:00 2001 From: Karl Southern Date: Tue, 23 Jul 2024 13:26:33 +0100 Subject: [PATCH] fix --- CONTRIBUTING.md | 3 ++- insim/Cargo.toml | 6 +++--- insim_pth/Cargo.toml | 2 +- insim_smx/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9381836..c54a954 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -65,7 +65,8 @@ We have no formal code of conduct at this time. But we do subscribe to Ideally this should be fully automated. At present it is not. -- Create PR change version in workspace Cargo.toml +- Create PR change version in workspace Cargo.toml, update all child crate Cargo.tomls to the + same version for any insim\_\* dependencies - Locally run `cargo publish --dry-run` to ensure everything is OK - Wait for CI to go green - Merge diff --git a/insim/Cargo.toml b/insim/Cargo.toml index 91a91fb..db45bb6 100644 --- a/insim/Cargo.toml +++ b/insim/Cargo.toml @@ -37,9 +37,9 @@ from_variants = { workspace = true } futures-util = { workspace = true, optional = true } if_chain = { workspace = true } indexmap = { workspace = true } -insim_core = { path = "../insim_core", version = "1.0.0" } -insim_pth = { path = "../insim_pth", optional = true, version = "1" } -insim_smx = { path = "../insim_smx", optional = true, version = "1" } +insim_core = { path = "../insim_core", version = "1.1.1" } +insim_pth = { path = "../insim_pth", optional = true, version = "1.1.1" } +insim_smx = { path = "../insim_smx", optional = true, version = "1.1.1" } serde = { workspace = true, features = ["derive"], optional = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["rt", "time", "net", "macros", "sync", "tracing"], optional = true } diff --git a/insim_pth/Cargo.toml b/insim_pth/Cargo.toml index 09d04e1..ecf6818 100644 --- a/insim_pth/Cargo.toml +++ b/insim_pth/Cargo.toml @@ -16,5 +16,5 @@ bench = false doctest = false [dependencies] -insim_core = { path = "../insim_core", version = "1" } +insim_core = { path = "../insim_core", version = "1.1.1" } thiserror = { workspace = true } diff --git a/insim_smx/Cargo.toml b/insim_smx/Cargo.toml index 5ccd334..9abc6b1 100644 --- a/insim_smx/Cargo.toml +++ b/insim_smx/Cargo.toml @@ -17,5 +17,5 @@ bench = false doctest = false [dependencies] -insim_core = { path = "../insim_core", version = "1" } +insim_core = { path = "../insim_core", version = "1.1.1" } thiserror = { workspace = true }