From d29c370ac847428a64a334c10f92201a877c45c7 Mon Sep 17 00:00:00 2001 From: Benjamin Naecker Date: Wed, 13 Dec 2023 21:36:45 +0000 Subject: [PATCH 1/2] Use cargo-release and bump minor versions --- .github/workflows/rust.yml | 2 +- Cargo.lock | 14 +++++++------- dof/Cargo.toml | 2 +- dtrace-parser/Cargo.toml | 2 +- dusty/Cargo.toml | 3 ++- probe-test-attr/Cargo.toml | 1 + probe-test-build/Cargo.toml | 1 + probe-test-macro/Cargo.toml | 1 + tests/argument-types/Cargo.toml | 1 + tests/compile-errors/Cargo.toml | 1 + tests/does-it-work/Cargo.toml | 1 + tests/empty/Cargo.toml | 1 + tests/fake-cmd/Cargo.toml | 1 + tests/fake-lib/Cargo.toml | 1 + tests/modules/Cargo.toml | 1 + tests/rename-builder/Cargo.toml | 1 + tests/rename/Cargo.toml | 1 + tests/test-json/Cargo.toml | 1 + tests/test-unique-id/Cargo.toml | 1 + tests/usize/Cargo.toml | 1 + tests/zero-arg-probe/Cargo.toml | 1 + usdt-attr-macro/Cargo.toml | 6 +++--- usdt-impl/Cargo.toml | 8 ++++---- usdt-macro/Cargo.toml | 6 +++--- usdt-tests-common/Cargo.toml | 1 + usdt/Cargo.toml | 12 ++++++------ 26 files changed, 45 insertions(+), 27 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a805541f..0f536214 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -152,7 +152,7 @@ jobs: --verbose --workspace --exclude compile-errors - --exclude dusty + --exclude dusty old-nightly-no-support: name: Run tests on an older nightly diff --git a/Cargo.lock b/Cargo.lock index 87721a88..06466fca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -192,7 +192,7 @@ dependencies = [ [[package]] name = "dof" -version = "0.2.0" +version = "0.3.0" dependencies = [ "goblin", "pretty-hex", @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "dtrace-parser" -version = "0.1.15" +version = "0.2.0" dependencies = [ "pest", "pest_derive", @@ -214,7 +214,7 @@ dependencies = [ [[package]] name = "dusty" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "dof", @@ -815,7 +815,7 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "usdt" -version = "0.4.1" +version = "0.5.0" dependencies = [ "dof", "dtrace-parser", @@ -829,7 +829,7 @@ dependencies = [ [[package]] name = "usdt-attr-macro" -version = "0.4.1" +version = "0.5.0" dependencies = [ "dtrace-parser", "proc-macro2", @@ -842,7 +842,7 @@ dependencies = [ [[package]] name = "usdt-impl" -version = "0.4.1" +version = "0.5.0" dependencies = [ "byteorder", "dof", @@ -860,7 +860,7 @@ dependencies = [ [[package]] name = "usdt-macro" -version = "0.4.1" +version = "0.5.0" dependencies = [ "dtrace-parser", "proc-macro2", diff --git a/dof/Cargo.toml b/dof/Cargo.toml index a28ea57e..05b70757 100644 --- a/dof/Cargo.toml +++ b/dof/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dof" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "Apache-2.0" description = "Tools to read and write the DTrace Object Format (DOF)" diff --git a/dtrace-parser/Cargo.toml b/dtrace-parser/Cargo.toml index 601b3991..6c727e11 100644 --- a/dtrace-parser/Cargo.toml +++ b/dtrace-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtrace-parser" -version = "0.1.15" +version = "0.2.0" edition = "2021" license = "Apache-2.0" description = "Parse DTrace provider definitions into Rust" diff --git a/dusty/Cargo.toml b/dusty/Cargo.toml index 0dcf8df0..8e18746f 100644 --- a/dusty/Cargo.toml +++ b/dusty/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "dusty" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "Tool to inspect USDT probe records in object files" license = "Apache-2.0" rust-version = "1.70.0" +publish = false [dependencies] clap = { version = "4.4.11", features = ["derive"] } diff --git a/probe-test-attr/Cargo.toml b/probe-test-attr/Cargo.toml index d73431ca..9c8888c4 100644 --- a/probe-test-attr/Cargo.toml +++ b/probe-test-attr/Cargo.toml @@ -2,6 +2,7 @@ name = "probe-test-attr" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../usdt", default-features = false } diff --git a/probe-test-build/Cargo.toml b/probe-test-build/Cargo.toml index 54c14c99..acafa89f 100644 --- a/probe-test-build/Cargo.toml +++ b/probe-test-build/Cargo.toml @@ -2,6 +2,7 @@ name = "probe-test-build" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../usdt", default-features = false } diff --git a/probe-test-macro/Cargo.toml b/probe-test-macro/Cargo.toml index 34ed3c43..bb5f687f 100644 --- a/probe-test-macro/Cargo.toml +++ b/probe-test-macro/Cargo.toml @@ -2,6 +2,7 @@ name = "probe-test-macro" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../usdt", default-features = false } diff --git a/tests/argument-types/Cargo.toml b/tests/argument-types/Cargo.toml index 2aff22ab..ae73cb28 100644 --- a/tests/argument-types/Cargo.toml +++ b/tests/argument-types/Cargo.toml @@ -2,6 +2,7 @@ name = "argument-types" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/compile-errors/Cargo.toml b/tests/compile-errors/Cargo.toml index 86f8b757..84f4412f 100644 --- a/tests/compile-errors/Cargo.toml +++ b/tests/compile-errors/Cargo.toml @@ -2,6 +2,7 @@ name = "compile-errors" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/does-it-work/Cargo.toml b/tests/does-it-work/Cargo.toml index b5b9e661..bcdc536f 100644 --- a/tests/does-it-work/Cargo.toml +++ b/tests/does-it-work/Cargo.toml @@ -2,6 +2,7 @@ name = "does-it-work" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index a52f35c9..ce71ba98 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -2,6 +2,7 @@ name = "empty" version = "0.1.0" edition = "2021" +publish = false [dependencies.usdt] path = "../../usdt" diff --git a/tests/fake-cmd/Cargo.toml b/tests/fake-cmd/Cargo.toml index e4889531..5fd95f8a 100644 --- a/tests/fake-cmd/Cargo.toml +++ b/tests/fake-cmd/Cargo.toml @@ -2,6 +2,7 @@ name = "fake-cmd" version = "0.1.0" edition = "2021" +publish = false [dependencies] fake-lib = { path = "../fake-lib" } diff --git a/tests/fake-lib/Cargo.toml b/tests/fake-lib/Cargo.toml index 3c0fd465..0c1df7b5 100644 --- a/tests/fake-lib/Cargo.toml +++ b/tests/fake-lib/Cargo.toml @@ -2,6 +2,7 @@ name = "fake-lib" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt", features = ["asm"] } diff --git a/tests/modules/Cargo.toml b/tests/modules/Cargo.toml index b7ec07ef..33fb4da1 100644 --- a/tests/modules/Cargo.toml +++ b/tests/modules/Cargo.toml @@ -2,6 +2,7 @@ name = "modules" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/rename-builder/Cargo.toml b/tests/rename-builder/Cargo.toml index 2b695141..a94bc6c8 100644 --- a/tests/rename-builder/Cargo.toml +++ b/tests/rename-builder/Cargo.toml @@ -2,6 +2,7 @@ name = "rename-builder" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/rename/Cargo.toml b/tests/rename/Cargo.toml index 28d43b18..4dcfcda3 100644 --- a/tests/rename/Cargo.toml +++ b/tests/rename/Cargo.toml @@ -2,6 +2,7 @@ name = "rename" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/test-json/Cargo.toml b/tests/test-json/Cargo.toml index 88a4f2af..dd6e092c 100644 --- a/tests/test-json/Cargo.toml +++ b/tests/test-json/Cargo.toml @@ -2,6 +2,7 @@ name = "test-json" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/test-unique-id/Cargo.toml b/tests/test-unique-id/Cargo.toml index b8093532..9b1a0ada 100644 --- a/tests/test-unique-id/Cargo.toml +++ b/tests/test-unique-id/Cargo.toml @@ -2,6 +2,7 @@ name = "test-unique-id" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/usize/Cargo.toml b/tests/usize/Cargo.toml index 412599f9..7386d3d3 100644 --- a/tests/usize/Cargo.toml +++ b/tests/usize/Cargo.toml @@ -2,6 +2,7 @@ name = "usize" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt", features = ["asm"] } diff --git a/tests/zero-arg-probe/Cargo.toml b/tests/zero-arg-probe/Cargo.toml index c9d19b27..23571299 100644 --- a/tests/zero-arg-probe/Cargo.toml +++ b/tests/zero-arg-probe/Cargo.toml @@ -2,6 +2,7 @@ name = "zero-arg-probe" version = "0.1.0" edition = "2021" +publish = false [dependencies] usdt = { path = "../../usdt" } diff --git a/usdt-attr-macro/Cargo.toml b/usdt-attr-macro/Cargo.toml index 2746e930..d3da269f 100644 --- a/usdt-attr-macro/Cargo.toml +++ b/usdt-attr-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usdt-attr-macro" -version = "0.4.1" +version = "0.5.0" edition = "2021" license = "Apache-2.0" description = "Procedural macro for generating Rust macros for USDT probes" @@ -10,12 +10,12 @@ repository = "https://github.com/oxidecomputer/usdt.git" proc-macro = true [dependencies] -dtrace-parser = { path = "../dtrace-parser", version = "= 0.1.15" } +dtrace-parser = { path = "../dtrace-parser", version = "=0.2.0" } proc-macro2 = "1" serde_tokenstream = "0.2" syn = { version = "2", features = ["full"] } quote = "1" -usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.1" } +usdt-impl = { path = "../usdt-impl", default-features = false, version = "=0.5.0" } [features] default = ["asm"] diff --git a/usdt-impl/Cargo.toml b/usdt-impl/Cargo.toml index bf5abd28..eebba1e5 100644 --- a/usdt-impl/Cargo.toml +++ b/usdt-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usdt-impl" -version = "0.4.1" +version = "0.5.0" edition = "2021" license = "Apache-2.0" description = "Main implementation crate for the USDT package" @@ -8,7 +8,7 @@ repository = "https://github.com/oxidecomputer/usdt.git" [dependencies] byteorder = "1" -dtrace-parser = { path = "../dtrace-parser", version = "= 0.1.15" } +dtrace-parser = { path = "../dtrace-parser", version = "=0.2.0" } libc = "0.2" proc-macro2 = "1" quote = "1" @@ -22,10 +22,10 @@ thread-id = "4" version_check = "0.9.4" [target.'cfg(target_os = "macos")'.dependencies] -dof = { path = "../dof", optional = true, default-features = false, version = "= 0.2.0" } +dof = { path = "../dof", optional = true, default-features = false, version = "=0.3.0" } [target.'cfg(not(target_os = "macos"))'.dependencies] -dof = { path = "../dof", default-features = false, version = "= 0.2.0" } +dof = { path = "../dof", default-features = false, version = "=0.3.0" } [features] default = ["asm"] diff --git a/usdt-macro/Cargo.toml b/usdt-macro/Cargo.toml index 8191c0fb..6986e2ca 100644 --- a/usdt-macro/Cargo.toml +++ b/usdt-macro/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "usdt-macro" -version = "0.4.1" +version = "0.5.0" edition = "2021" license = "Apache-2.0" description = "Procedural macro for generating Rust macros for USDT probes" repository = "https://github.com/oxidecomputer/usdt.git" [dependencies] -dtrace-parser = { path = "../dtrace-parser", version = "= 0.1.15" } +dtrace-parser = { path = "../dtrace-parser", version = "=0.2.0" } proc-macro2 = "1" serde_tokenstream = "0.2" syn = { version = "2", features = ["full"] } quote = "1" -usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.1" } +usdt-impl = { path = "../usdt-impl", default-features = false, version = "=0.5.0" } [features] default = ["asm"] diff --git a/usdt-tests-common/Cargo.toml b/usdt-tests-common/Cargo.toml index 2bc98668..7ac962d6 100644 --- a/usdt-tests-common/Cargo.toml +++ b/usdt-tests-common/Cargo.toml @@ -4,5 +4,6 @@ version = "0.0.0" license = "Apache-2.0" description = "Common routines for integration tests in this repository" edition = "2021" +publish = false [dependencies] diff --git a/usdt/Cargo.toml b/usdt/Cargo.toml index 3d227432..a89ae9ef 100644 --- a/usdt/Cargo.toml +++ b/usdt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usdt" -version = "0.4.1" +version = "0.5.0" edition = "2021" license = "Apache-2.0" description = "Dust your Rust with USDT probes" @@ -14,14 +14,14 @@ repository = "https://github.com/oxidecomputer/usdt.git" # where the public-facing `usdt` crate may pick up different versions of the # internal implementation crates. [dependencies] -dtrace-parser = { path = "../dtrace-parser", optional = true, version = "= 0.1.15" } +dtrace-parser = { path = "../dtrace-parser", optional = true, version = "=0.2.0" } serde = "1" -usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.1", features = [ +usdt-impl = { path = "../usdt-impl", default-features = false, version = "=0.5.0", features = [ "des", ] } -usdt-macro = { path = "../usdt-macro", default-features = false, version = "= 0.4.1" } -usdt-attr-macro = { path = "../usdt-attr-macro", default-features = false, version = "= 0.4.1" } -dof = { path = "../dof", features = ["des"], version = "= 0.2.0" } +usdt-macro = { path = "../usdt-macro", default-features = false, version = "=0.5.0" } +usdt-attr-macro = { path = "../usdt-attr-macro", default-features = false, version = "=0.5.0" } +dof = { path = "../dof", features = ["des"], version = "=0.3.0" } goblin = { version = "0.6", features = ["elf32", "elf64"] } memmap = { version = "0.7" } From 56d21aafad3849d9adf31c19b9add4fbd5c4bab2 Mon Sep 17 00:00:00 2001 From: Benjamin Naecker Date: Mon, 8 Jan 2024 17:36:12 +0000 Subject: [PATCH 2/2] Ignore internal crates - Add `release.toml` to all internal crates that prevents `cargo release` from operating on it. - Set all internal crates to version `0.0.0` --- Cargo.lock | 32 +++++++++++++++---------------- dusty/release.toml | 1 + probe-test-attr/Cargo.toml | 2 +- probe-test-attr/release.toml | 1 + probe-test-build/Cargo.toml | 2 +- probe-test-build/release.toml | 1 + probe-test-macro/Cargo.toml | 2 +- probe-test-macro/release.toml | 1 + tests/argument-types/Cargo.toml | 2 +- tests/argument-types/release.toml | 1 + tests/compile-errors/Cargo.toml | 2 +- tests/compile-errors/release.toml | 1 + tests/does-it-work/Cargo.toml | 2 +- tests/does-it-work/release.toml | 1 + tests/empty/Cargo.toml | 2 +- tests/empty/release.toml | 1 + tests/fake-cmd/Cargo.toml | 2 +- tests/fake-cmd/release.toml | 1 + tests/fake-lib/Cargo.toml | 2 +- tests/fake-lib/release.toml | 1 + tests/modules/Cargo.toml | 2 +- tests/modules/release.toml | 1 + tests/rename-builder/Cargo.toml | 2 +- tests/rename-builder/release.toml | 1 + tests/rename/Cargo.toml | 2 +- tests/rename/release.toml | 1 + tests/test-json/Cargo.toml | 2 +- tests/test-json/release.toml | 1 + tests/test-unique-id/Cargo.toml | 2 +- tests/test-unique-id/release.toml | 1 + tests/usize/Cargo.toml | 2 +- tests/usize/release.toml | 1 + tests/zero-arg-probe/Cargo.toml | 2 +- tests/zero-arg-probe/release.toml | 1 + usdt-tests-common/release.toml | 1 + 35 files changed, 50 insertions(+), 32 deletions(-) create mode 100644 dusty/release.toml create mode 100644 probe-test-attr/release.toml create mode 100644 probe-test-build/release.toml create mode 100644 probe-test-macro/release.toml create mode 100644 tests/argument-types/release.toml create mode 100644 tests/compile-errors/release.toml create mode 100644 tests/does-it-work/release.toml create mode 100644 tests/empty/release.toml create mode 100644 tests/fake-cmd/release.toml create mode 100644 tests/fake-lib/release.toml create mode 100644 tests/modules/release.toml create mode 100644 tests/rename-builder/release.toml create mode 100644 tests/rename/release.toml create mode 100644 tests/test-json/release.toml create mode 100644 tests/test-unique-id/release.toml create mode 100644 tests/usize/release.toml create mode 100644 tests/zero-arg-probe/release.toml create mode 100644 usdt-tests-common/release.toml diff --git a/Cargo.lock b/Cargo.lock index 06466fca..66b405ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ dependencies = [ [[package]] name = "argument-types" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "usdt", @@ -143,7 +143,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "compile-errors" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "serde_json", @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "does-it-work" -version = "0.1.0" +version = "0.0.0" dependencies = [ "usdt", "usdt-tests-common", @@ -224,7 +224,7 @@ dependencies = [ [[package]] name = "empty" -version = "0.1.0" +version = "0.0.0" dependencies = [ "usdt", "version_check", @@ -232,7 +232,7 @@ dependencies = [ [[package]] name = "fake-cmd" -version = "0.1.0" +version = "0.0.0" dependencies = [ "fake-lib", "version_check", @@ -240,7 +240,7 @@ dependencies = [ [[package]] name = "fake-lib" -version = "0.1.0" +version = "0.0.0" dependencies = [ "usdt", "version_check", @@ -410,7 +410,7 @@ dependencies = [ [[package]] name = "modules" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "usdt", @@ -494,7 +494,7 @@ checksum = "bbc83ee4a840062f368f9096d80077a9841ec117e17e7f700df81958f1451254" [[package]] name = "probe-test-attr" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "usdt", @@ -503,7 +503,7 @@ dependencies = [ [[package]] name = "probe-test-build" -version = "0.1.0" +version = "0.0.0" dependencies = [ "usdt", "version_check", @@ -511,7 +511,7 @@ dependencies = [ [[package]] name = "probe-test-macro" -version = "0.1.0" +version = "0.0.0" dependencies = [ "usdt", "version_check", @@ -537,7 +537,7 @@ dependencies = [ [[package]] name = "rename" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "usdt", @@ -546,7 +546,7 @@ dependencies = [ [[package]] name = "rename-builder" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "usdt", @@ -732,7 +732,7 @@ dependencies = [ [[package]] name = "test-json" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "serde_json", @@ -743,7 +743,7 @@ dependencies = [ [[package]] name = "test-unique-id" -version = "0.1.0" +version = "0.0.0" dependencies = [ "subprocess", "usdt", @@ -876,7 +876,7 @@ version = "0.0.0" [[package]] name = "usize" -version = "0.1.0" +version = "0.0.0" dependencies = [ "serde", "serde_json", @@ -995,7 +995,7 @@ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "zero-arg-probe" -version = "0.1.0" +version = "0.0.0" dependencies = [ "usdt", "version_check", diff --git a/dusty/release.toml b/dusty/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/dusty/release.toml @@ -0,0 +1 @@ +release = false diff --git a/probe-test-attr/Cargo.toml b/probe-test-attr/Cargo.toml index 9c8888c4..3834da61 100644 --- a/probe-test-attr/Cargo.toml +++ b/probe-test-attr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "probe-test-attr" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/probe-test-attr/release.toml b/probe-test-attr/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/probe-test-attr/release.toml @@ -0,0 +1 @@ +release = false diff --git a/probe-test-build/Cargo.toml b/probe-test-build/Cargo.toml index acafa89f..fb201d46 100644 --- a/probe-test-build/Cargo.toml +++ b/probe-test-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "probe-test-build" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/probe-test-build/release.toml b/probe-test-build/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/probe-test-build/release.toml @@ -0,0 +1 @@ +release = false diff --git a/probe-test-macro/Cargo.toml b/probe-test-macro/Cargo.toml index bb5f687f..1c986cb7 100644 --- a/probe-test-macro/Cargo.toml +++ b/probe-test-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "probe-test-macro" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/probe-test-macro/release.toml b/probe-test-macro/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/probe-test-macro/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/argument-types/Cargo.toml b/tests/argument-types/Cargo.toml index ae73cb28..f0c4ddd2 100644 --- a/tests/argument-types/Cargo.toml +++ b/tests/argument-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "argument-types" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/argument-types/release.toml b/tests/argument-types/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/argument-types/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/compile-errors/Cargo.toml b/tests/compile-errors/Cargo.toml index 84f4412f..c988febc 100644 --- a/tests/compile-errors/Cargo.toml +++ b/tests/compile-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "compile-errors" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/compile-errors/release.toml b/tests/compile-errors/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/compile-errors/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/does-it-work/Cargo.toml b/tests/does-it-work/Cargo.toml index bcdc536f..b98a0978 100644 --- a/tests/does-it-work/Cargo.toml +++ b/tests/does-it-work/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "does-it-work" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/does-it-work/release.toml b/tests/does-it-work/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/does-it-work/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index ce71ba98..1e5badcd 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "empty" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/empty/release.toml b/tests/empty/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/empty/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/fake-cmd/Cargo.toml b/tests/fake-cmd/Cargo.toml index 5fd95f8a..138677d7 100644 --- a/tests/fake-cmd/Cargo.toml +++ b/tests/fake-cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fake-cmd" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/fake-cmd/release.toml b/tests/fake-cmd/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/fake-cmd/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/fake-lib/Cargo.toml b/tests/fake-lib/Cargo.toml index 0c1df7b5..f506944a 100644 --- a/tests/fake-lib/Cargo.toml +++ b/tests/fake-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fake-lib" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/fake-lib/release.toml b/tests/fake-lib/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/fake-lib/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/modules/Cargo.toml b/tests/modules/Cargo.toml index 33fb4da1..6a06a1ef 100644 --- a/tests/modules/Cargo.toml +++ b/tests/modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "modules" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/modules/release.toml b/tests/modules/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/modules/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/rename-builder/Cargo.toml b/tests/rename-builder/Cargo.toml index a94bc6c8..e76e61a0 100644 --- a/tests/rename-builder/Cargo.toml +++ b/tests/rename-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rename-builder" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/rename-builder/release.toml b/tests/rename-builder/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/rename-builder/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/rename/Cargo.toml b/tests/rename/Cargo.toml index 4dcfcda3..62c33059 100644 --- a/tests/rename/Cargo.toml +++ b/tests/rename/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rename" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/rename/release.toml b/tests/rename/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/rename/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/test-json/Cargo.toml b/tests/test-json/Cargo.toml index dd6e092c..59eab400 100644 --- a/tests/test-json/Cargo.toml +++ b/tests/test-json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-json" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/test-json/release.toml b/tests/test-json/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/test-json/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/test-unique-id/Cargo.toml b/tests/test-unique-id/Cargo.toml index 9b1a0ada..46ed2ec8 100644 --- a/tests/test-unique-id/Cargo.toml +++ b/tests/test-unique-id/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-unique-id" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/test-unique-id/release.toml b/tests/test-unique-id/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/test-unique-id/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/usize/Cargo.toml b/tests/usize/Cargo.toml index 7386d3d3..5299fb1d 100644 --- a/tests/usize/Cargo.toml +++ b/tests/usize/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usize" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/usize/release.toml b/tests/usize/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/usize/release.toml @@ -0,0 +1 @@ +release = false diff --git a/tests/zero-arg-probe/Cargo.toml b/tests/zero-arg-probe/Cargo.toml index 23571299..d96b8006 100644 --- a/tests/zero-arg-probe/Cargo.toml +++ b/tests/zero-arg-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zero-arg-probe" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tests/zero-arg-probe/release.toml b/tests/zero-arg-probe/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/tests/zero-arg-probe/release.toml @@ -0,0 +1 @@ +release = false diff --git a/usdt-tests-common/release.toml b/usdt-tests-common/release.toml new file mode 100644 index 00000000..95456409 --- /dev/null +++ b/usdt-tests-common/release.toml @@ -0,0 +1 @@ +release = false