diff --git a/Cargo.lock b/Cargo.lock index 7411d2a..6d37706 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1129,7 +1129,7 @@ dependencies = [ [[package]] name = "konfigkoll" -version = "0.1.9" +version = "0.1.10" dependencies = [ "ahash", "camino", @@ -1161,7 +1161,7 @@ dependencies = [ [[package]] name = "konfigkoll_core" -version = "0.5.0" +version = "0.5.1" dependencies = [ "ahash", "camino", @@ -1189,7 +1189,7 @@ dependencies = [ [[package]] name = "konfigkoll_hwinfo" -version = "0.1.6" +version = "0.1.7" dependencies = [ "ahash", "eyre", @@ -1203,7 +1203,7 @@ dependencies = [ [[package]] name = "konfigkoll_script" -version = "0.1.7" +version = "0.1.8" dependencies = [ "ahash", "camino", @@ -1235,7 +1235,7 @@ dependencies = [ [[package]] name = "konfigkoll_types" -version = "0.2.3" +version = "0.2.4" dependencies = [ "camino", "compact_str", @@ -1249,7 +1249,7 @@ dependencies = [ [[package]] name = "konfigkoll_utils" -version = "0.1.6" +version = "0.1.7" dependencies = [ "camino", "compact_str", @@ -1439,7 +1439,7 @@ dependencies = [ [[package]] name = "mtree2" -version = "0.6.8" +version = "0.6.9" dependencies = [ "bitflags 2.6.0", "faster-hex", @@ -1744,7 +1744,7 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" [[package]] name = "paketkoll" -version = "0.3.7" +version = "0.3.8" dependencies = [ "ahash", "clap", @@ -1767,7 +1767,7 @@ dependencies = [ [[package]] name = "paketkoll_cache" -version = "0.2.6" +version = "0.2.7" dependencies = [ "ahash", "cached", @@ -1783,7 +1783,7 @@ dependencies = [ [[package]] name = "paketkoll_core" -version = "0.5.7" +version = "0.5.8" dependencies = [ "ahash", "ar", @@ -1828,7 +1828,7 @@ dependencies = [ [[package]] name = "paketkoll_types" -version = "0.2.1" +version = "0.2.2" dependencies = [ "ahash", "bitflags 2.6.0", @@ -1849,7 +1849,7 @@ dependencies = [ [[package]] name = "paketkoll_utils" -version = "0.1.6" +version = "0.1.7" dependencies = [ "eyre", "paketkoll_types", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "systemd_tmpfiles" -version = "0.2.1" +version = "0.2.2" dependencies = [ "base64-simd", "bitflags 2.6.0", diff --git a/crates/konfigkoll/CHANGELOG.md b/crates/konfigkoll/CHANGELOG.md index 3b9503c..b7130f4 100644 --- a/crates/konfigkoll/CHANGELOG.md +++ b/crates/konfigkoll/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.10] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.1.9] - 2024-09-20 ### 🚀 Features diff --git a/crates/konfigkoll/Cargo.toml b/crates/konfigkoll/Cargo.toml index 87749a1..5aef84e 100644 --- a/crates/konfigkoll/Cargo.toml +++ b/crates/konfigkoll/Cargo.toml @@ -12,7 +12,7 @@ license = "MPL-2.0" name = "konfigkoll" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.9" +version = "0.1.10" [[bin]] name = "konfigkoll" @@ -46,14 +46,14 @@ directories.workspace = true either.workspace = true eyre.workspace = true itertools.workspace = true -konfigkoll_core = { version = "0.5.0", path = "../konfigkoll_core" } -konfigkoll_script = { version = "0.1.7", path = "../konfigkoll_script" } -konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" } -konfigkoll_utils = { version = "0.1.6", path = "../konfigkoll_utils" } +konfigkoll_core = { version = "0.5.1", path = "../konfigkoll_core" } +konfigkoll_script = { version = "0.1.8", path = "../konfigkoll_script" } +konfigkoll_types = { version = "0.2.4", path = "../konfigkoll_types" } +konfigkoll_utils = { version = "0.1.7", path = "../konfigkoll_utils" } ouroboros.workspace = true -paketkoll_cache = { version = "0.2.6", path = "../paketkoll_cache" } -paketkoll_core = { version = "0.5.7", path = "../paketkoll_core" } -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } +paketkoll_cache = { version = "0.2.7", path = "../paketkoll_cache" } +paketkoll_core = { version = "0.5.8", path = "../paketkoll_core" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } rayon.workspace = true rune = { workspace = true, features = ["cli"] } diff --git a/crates/konfigkoll_core/CHANGELOG.md b/crates/konfigkoll_core/CHANGELOG.md index 81fccf3..d7f0a78 100644 --- a/crates/konfigkoll_core/CHANGELOG.md +++ b/crates/konfigkoll_core/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.5.1] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.5.0] - 2024-09-20 ### 🚀 Features diff --git a/crates/konfigkoll_core/Cargo.toml b/crates/konfigkoll_core/Cargo.toml index f9a14ed..9c3bff0 100644 --- a/crates/konfigkoll_core/Cargo.toml +++ b/crates/konfigkoll_core/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "konfigkoll_core" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.5.0" +version = "0.5.1" [dependencies] ahash.workspace = true @@ -20,11 +20,11 @@ duct.workspace = true either.workspace = true eyre.workspace = true itertools.workspace = true -konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" } +konfigkoll_types = { version = "0.2.4", path = "../konfigkoll_types" } libc.workspace = true nix = { workspace = true, features = ["user"] } -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.6", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.7", path = "../paketkoll_utils" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } parking_lot.workspace = true rayon.workspace = true diff --git a/crates/konfigkoll_hwinfo/CHANGELOG.md b/crates/konfigkoll_hwinfo/CHANGELOG.md index d7c37f4..83e8f91 100644 --- a/crates/konfigkoll_hwinfo/CHANGELOG.md +++ b/crates/konfigkoll_hwinfo/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.7] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.1.6] - 2024-09-20 ### ⚙️ Other stuff diff --git a/crates/konfigkoll_hwinfo/Cargo.toml b/crates/konfigkoll_hwinfo/Cargo.toml index c6e026e..53c8b67 100644 --- a/crates/konfigkoll_hwinfo/Cargo.toml +++ b/crates/konfigkoll_hwinfo/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "konfigkoll_hwinfo" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.6" +version = "0.1.7" [features] rune = ["dep:rune"] diff --git a/crates/konfigkoll_script/CHANGELOG.md b/crates/konfigkoll_script/CHANGELOG.md index b0c9b91..6969e82 100644 --- a/crates/konfigkoll_script/CHANGELOG.md +++ b/crates/konfigkoll_script/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.8] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.1.7] - 2024-09-20 ### ⚙️ Other stuff diff --git a/crates/konfigkoll_script/Cargo.toml b/crates/konfigkoll_script/Cargo.toml index 17d1010..8a64d93 100644 --- a/crates/konfigkoll_script/Cargo.toml +++ b/crates/konfigkoll_script/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "konfigkoll_script" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.7" +version = "0.1.8" [dependencies] ahash.workspace = true @@ -18,12 +18,12 @@ eyre.workspace = true glob.workspace = true globset.workspace = true itertools.workspace = true -konfigkoll_hwinfo = { version = "0.1.6", path = "../konfigkoll_hwinfo", features = [ +konfigkoll_hwinfo = { version = "0.1.7", path = "../konfigkoll_hwinfo", features = [ "rune", ] } -konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" } -konfigkoll_utils = { version = "0.1.6", path = "../konfigkoll_utils" } -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } +konfigkoll_types = { version = "0.2.4", path = "../konfigkoll_types" } +konfigkoll_utils = { version = "0.1.7", path = "../konfigkoll_utils" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } parking_lot.workspace = true regex.workspace = true diff --git a/crates/konfigkoll_types/CHANGELOG.md b/crates/konfigkoll_types/CHANGELOG.md index 31f4136..8ae5c44 100644 --- a/crates/konfigkoll_types/CHANGELOG.md +++ b/crates/konfigkoll_types/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.4] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.2.3] - 2024-09-20 ### ⚙️ Other stuff diff --git a/crates/konfigkoll_types/Cargo.toml b/crates/konfigkoll_types/Cargo.toml index 553ec6b..56f80c3 100644 --- a/crates/konfigkoll_types/Cargo.toml +++ b/crates/konfigkoll_types/Cargo.toml @@ -6,15 +6,15 @@ license = "MPL-2.0" name = "konfigkoll_types" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.2.3" +version = "0.2.4" [dependencies] camino.workspace = true compact_str.workspace = true either.workspace = true eyre.workspace = true -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.6", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.7", path = "../paketkoll_utils" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } strum.workspace = true diff --git a/crates/konfigkoll_utils/CHANGELOG.md b/crates/konfigkoll_utils/CHANGELOG.md index ba61b67..15db1b9 100644 --- a/crates/konfigkoll_utils/CHANGELOG.md +++ b/crates/konfigkoll_utils/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.7] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.1.6] - 2024-09-20 ### ⚙️ Other stuff diff --git a/crates/konfigkoll_utils/Cargo.toml b/crates/konfigkoll_utils/Cargo.toml index b2e6f6a..ac980eb 100644 --- a/crates/konfigkoll_utils/Cargo.toml +++ b/crates/konfigkoll_utils/Cargo.toml @@ -6,7 +6,7 @@ license = "MPL-2.0" name = "konfigkoll_utils" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.6" +version = "0.1.7" [dependencies] camino.workspace = true diff --git a/crates/mtree2/CHANGELOG.md b/crates/mtree2/CHANGELOG.md index 85bf92a..0dda87f 100644 --- a/crates/mtree2/CHANGELOG.md +++ b/crates/mtree2/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.6.9] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.6.8] - 2024-09-20 ### ⚙️ Other stuff diff --git a/crates/mtree2/Cargo.toml b/crates/mtree2/Cargo.toml index 138531f..8400f54 100644 --- a/crates/mtree2/Cargo.toml +++ b/crates/mtree2/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0 OR MIT" name = "mtree2" readme = "README.md" repository = "https://github.com/VorpalBlade/paketkoll" -version = "0.6.8" +version = "0.6.9" [dependencies] bitflags.workspace = true diff --git a/crates/paketkoll/CHANGELOG.md b/crates/paketkoll/CHANGELOG.md index 2ac2301..a355706 100644 --- a/crates/paketkoll/CHANGELOG.md +++ b/crates/paketkoll/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.3.8] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.3.7] - 2024-09-20 ### ⚙️ Other stuff diff --git a/crates/paketkoll/Cargo.toml b/crates/paketkoll/Cargo.toml index 04c68cb..cc8d38c 100644 --- a/crates/paketkoll/Cargo.toml +++ b/crates/paketkoll/Cargo.toml @@ -8,7 +8,7 @@ name = "paketkoll" readme = "README.md" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.3.7" +version = "0.3.8" [features] # Default features @@ -36,8 +36,8 @@ color-eyre.workspace = true compact_str.workspace = true eyre.workspace = true os_info.workspace = true -paketkoll_core = { version = "0.5.7", path = "../paketkoll_core" } -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } +paketkoll_core = { version = "0.5.8", path = "../paketkoll_core" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } proc-exit.workspace = true rayon.workspace = true diff --git a/crates/paketkoll_cache/CHANGELOG.md b/crates/paketkoll_cache/CHANGELOG.md index a0bfc13..aa8bdb4 100644 --- a/crates/paketkoll_cache/CHANGELOG.md +++ b/crates/paketkoll_cache/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.7] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.2.6] - 2024-09-20 ### 🐛 Bug fixes diff --git a/crates/paketkoll_cache/Cargo.toml b/crates/paketkoll_cache/Cargo.toml index 7f8593e..bff19de 100644 --- a/crates/paketkoll_cache/Cargo.toml +++ b/crates/paketkoll_cache/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "paketkoll_cache" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.2.6" +version = "0.2.7" [dependencies] ahash.workspace = true @@ -15,7 +15,7 @@ cached.workspace = true compact_str.workspace = true dashmap.workspace = true eyre.workspace = true -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } serde.workspace = true smallvec.workspace = true diff --git a/crates/paketkoll_core/CHANGELOG.md b/crates/paketkoll_core/CHANGELOG.md index 8b62a50..f45d683 100644 --- a/crates/paketkoll_core/CHANGELOG.md +++ b/crates/paketkoll_core/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.5.8] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.5.7] - 2024-09-20 ### 🚀 Features diff --git a/crates/paketkoll_core/Cargo.toml b/crates/paketkoll_core/Cargo.toml index fda12e6..bc27280 100644 --- a/crates/paketkoll_core/Cargo.toml +++ b/crates/paketkoll_core/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "paketkoll_core" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.5.7" +version = "0.5.8" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -70,11 +70,11 @@ glob.workspace = true ignore.workspace = true libc.workspace = true md-5 = { workspace = true, optional = true } -mtree2 = { version = "0.6.8", path = "../mtree2", optional = true } +mtree2 = { version = "0.6.9", path = "../mtree2", optional = true } nix = { workspace = true, features = ["user"], optional = true } num_cpus.workspace = true -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.6", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.7", path = "../paketkoll_utils" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } parking_lot.workspace = true phf.workspace = true @@ -85,7 +85,7 @@ rust-ini = { workspace = true, optional = true } scopeguard.workspace = true smallvec.workspace = true strum.workspace = true -systemd_tmpfiles = { version = "0.2.1", path = "../systemd_tmpfiles", optional = true } +systemd_tmpfiles = { version = "0.2.2", path = "../systemd_tmpfiles", optional = true } tar.workspace = true tracing.workspace = true xz2 = { workspace = true, optional = true } diff --git a/crates/paketkoll_types/CHANGELOG.md b/crates/paketkoll_types/CHANGELOG.md index e15cf58..c38f1b4 100644 --- a/crates/paketkoll_types/CHANGELOG.md +++ b/crates/paketkoll_types/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.2] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.2.1] - 2024-09-19 ### ⚙️ Other stuff diff --git a/crates/paketkoll_types/Cargo.toml b/crates/paketkoll_types/Cargo.toml index 0d0e4f1..aa4b30d 100644 --- a/crates/paketkoll_types/Cargo.toml +++ b/crates/paketkoll_types/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "paketkoll_types" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.2.1" +version = "0.2.2" [dependencies] ahash.workspace = true diff --git a/crates/paketkoll_utils/CHANGELOG.md b/crates/paketkoll_utils/CHANGELOG.md index 0ce62f0..c848f4e 100644 --- a/crates/paketkoll_utils/CHANGELOG.md +++ b/crates/paketkoll_utils/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.7] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.1.6] - 2024-09-19 ### ⚙️ Other stuff diff --git a/crates/paketkoll_utils/Cargo.toml b/crates/paketkoll_utils/Cargo.toml index 6ab5ee6..10e1099 100644 --- a/crates/paketkoll_utils/Cargo.toml +++ b/crates/paketkoll_utils/Cargo.toml @@ -5,11 +5,11 @@ license = "MPL-2.0" name = "paketkoll_utils" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.6" +version = "0.1.7" [dependencies] eyre.workspace = true -paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" } +paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } ring.workspace = true diff --git a/crates/systemd_tmpfiles/CHANGELOG.md b/crates/systemd_tmpfiles/CHANGELOG.md index 8d10651..21cdbfd 100644 --- a/crates/systemd_tmpfiles/CHANGELOG.md +++ b/crates/systemd_tmpfiles/CHANGELOG.md @@ -8,6 +8,12 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.2] - 2024-10-06 + +### 🚀 Features + +- Prepare workspace hack with cargo-hakari + ## [0.2.1] - 2024-09-19 ### ⚙️ Other stuff diff --git a/crates/systemd_tmpfiles/Cargo.toml b/crates/systemd_tmpfiles/Cargo.toml index 07c8d5b..b4acbbe 100644 --- a/crates/systemd_tmpfiles/Cargo.toml +++ b/crates/systemd_tmpfiles/Cargo.toml @@ -7,7 +7,7 @@ license = "MPL-2.0" name = "systemd_tmpfiles" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.2.1" +version = "0.2.2" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index c95e112..cb7e766 100644 --- a/crates/xtask/Cargo.toml +++ b/crates/xtask/Cargo.toml @@ -31,8 +31,8 @@ clap_complete.workspace = true clap_mangen.workspace = true color-eyre.workspace = true eyre.workspace = true -konfigkoll = { version = "0.1.9", path = "../konfigkoll" } -paketkoll = { version = "0.3.7", path = "../paketkoll" } +konfigkoll = { version = "0.1.10", path = "../konfigkoll" } +paketkoll = { version = "0.3.8", path = "../paketkoll" } paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" } tracing-subscriber.workspace = true tracing.workspace = true