From e2581d70fec1f89b3479ff4e2221323ab3ccf422 Mon Sep 17 00:00:00 2001 From: Arvid Norlander Date: Fri, 6 Sep 2024 08:28:41 +0200 Subject: [PATCH] chore: release --- Cargo.lock | 26 +++++++++++++------------- crates/konfigkoll/CHANGELOG.md | 21 +++++++++++++++++++++ crates/konfigkoll/Cargo.toml | 16 ++++++++-------- crates/konfigkoll_core/CHANGELOG.md | 17 +++++++++++++++++ crates/konfigkoll_core/Cargo.toml | 8 ++++---- crates/konfigkoll_hwinfo/CHANGELOG.md | 10 ++++++++++ crates/konfigkoll_hwinfo/Cargo.toml | 2 +- crates/konfigkoll_script/CHANGELOG.md | 17 +++++++++++++++++ crates/konfigkoll_script/Cargo.toml | 10 +++++----- crates/konfigkoll_types/CHANGELOG.md | 14 ++++++++++++++ crates/konfigkoll_types/Cargo.toml | 6 +++--- crates/konfigkoll_utils/CHANGELOG.md | 6 ++++++ crates/konfigkoll_utils/Cargo.toml | 2 +- crates/mtree2/CHANGELOG.md | 10 ++++++++++ crates/mtree2/Cargo.toml | 2 +- crates/paketkoll/CHANGELOG.md | 15 +++++++++++++++ crates/paketkoll/Cargo.toml | 6 +++--- crates/paketkoll_cache/CHANGELOG.md | 15 +++++++++++++++ crates/paketkoll_cache/Cargo.toml | 4 ++-- crates/paketkoll_core/CHANGELOG.md | 16 ++++++++++++++++ crates/paketkoll_core/Cargo.toml | 10 +++++----- crates/paketkoll_types/CHANGELOG.md | 14 ++++++++++++++ crates/paketkoll_types/Cargo.toml | 2 +- crates/paketkoll_utils/CHANGELOG.md | 14 ++++++++++++++ crates/paketkoll_utils/Cargo.toml | 4 ++-- crates/systemd_tmpfiles/CHANGELOG.md | 6 ++++++ crates/systemd_tmpfiles/Cargo.toml | 2 +- crates/xtask/Cargo.toml | 4 ++-- 28 files changed, 227 insertions(+), 52 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cbb7934..8386d22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1100,7 +1100,7 @@ dependencies = [ [[package]] name = "konfigkoll" -version = "0.1.6" +version = "0.1.7" dependencies = [ "ahash", "camino", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "konfigkoll_core" -version = "0.4.0" +version = "0.4.1" dependencies = [ "ahash", "camino", @@ -1157,7 +1157,7 @@ dependencies = [ [[package]] name = "konfigkoll_hwinfo" -version = "0.1.3" +version = "0.1.4" dependencies = [ "ahash", "eyre", @@ -1170,7 +1170,7 @@ dependencies = [ [[package]] name = "konfigkoll_script" -version = "0.1.4" +version = "0.1.5" dependencies = [ "ahash", "camino", @@ -1201,7 +1201,7 @@ dependencies = [ [[package]] name = "konfigkoll_types" -version = "0.2.0" +version = "0.2.1" dependencies = [ "camino", "compact_str", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "konfigkoll_utils" -version = "0.1.3" +version = "0.1.4" dependencies = [ "camino", "compact_str", @@ -1403,7 +1403,7 @@ dependencies = [ [[package]] name = "mtree2" -version = "0.6.5" +version = "0.6.6" dependencies = [ "bitflags 2.6.0", "faster-hex", @@ -1707,7 +1707,7 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" [[package]] name = "paketkoll" -version = "0.3.4" +version = "0.3.5" dependencies = [ "ahash", "clap", @@ -1729,7 +1729,7 @@ dependencies = [ [[package]] name = "paketkoll_cache" -version = "0.2.3" +version = "0.2.4" dependencies = [ "ahash", "cached", @@ -1744,7 +1744,7 @@ dependencies = [ [[package]] name = "paketkoll_core" -version = "0.5.4" +version = "0.5.5" dependencies = [ "ahash", "ar", @@ -1788,7 +1788,7 @@ dependencies = [ [[package]] name = "paketkoll_types" -version = "0.1.4" +version = "0.2.0" dependencies = [ "ahash", "bitflags 2.6.0", @@ -1808,7 +1808,7 @@ dependencies = [ [[package]] name = "paketkoll_utils" -version = "0.1.4" +version = "0.1.5" dependencies = [ "eyre", "paketkoll_types", @@ -2754,7 +2754,7 @@ dependencies = [ [[package]] name = "systemd_tmpfiles" -version = "0.1.6" +version = "0.1.7" dependencies = [ "base64-simd", "bitflags 2.6.0", diff --git a/crates/konfigkoll/CHANGELOG.md b/crates/konfigkoll/CHANGELOG.md index 2553956..943bacb 100644 --- a/crates/konfigkoll/CHANGELOG.md +++ b/crates/konfigkoll/CHANGELOG.md @@ -8,6 +8,27 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.7] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Change span log levels +- Switch from anyhow to color-eyre for better (and prettier) error messages +- Improve formatting of Rune runtime errors +- Add spans to async functions exposed to Rune (should help get better errors with color-eyre) +- Switch to custom error wrapper to better traverse the Rune callstacks +- Limit file data that we store inline leading to less verbose debug logs + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility (for Options) +- Switch to native eyre traits instead of anyhow compatibility +- Use anyhow::Result type alias consistently + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.6] - 2024-08-17 ### 🚀 Features diff --git a/crates/konfigkoll/Cargo.toml b/crates/konfigkoll/Cargo.toml index 14b6e76..03dee34 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.6" +version = "0.1.7" [[bin]] name = "konfigkoll" @@ -46,14 +46,14 @@ directories.workspace = true either.workspace = true eyre.workspace = true itertools.workspace = true -konfigkoll_core = { version = "0.4.0", path = "../konfigkoll_core" } -konfigkoll_script = { version = "0.1.4", path = "../konfigkoll_script" } -konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" } -konfigkoll_utils = { version = "0.1.3", path = "../konfigkoll_utils" } +konfigkoll_core = { version = "0.4.1", path = "../konfigkoll_core" } +konfigkoll_script = { version = "0.1.5", path = "../konfigkoll_script" } +konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" } +konfigkoll_utils = { version = "0.1.4", path = "../konfigkoll_utils" } ouroboros.workspace = true -paketkoll_cache = { version = "0.2.3", path = "../paketkoll_cache" } -paketkoll_core = { version = "0.5.4", path = "../paketkoll_core" } -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } +paketkoll_cache = { version = "0.2.4", path = "../paketkoll_cache" } +paketkoll_core = { version = "0.5.5", path = "../paketkoll_core" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } rayon.workspace = true rune = { workspace = true, features = ["cli"] } tokio.workspace = true diff --git a/crates/konfigkoll_core/CHANGELOG.md b/crates/konfigkoll_core/CHANGELOG.md index 8911ca0..f8033ba 100644 --- a/crates/konfigkoll_core/CHANGELOG.md +++ b/crates/konfigkoll_core/CHANGELOG.md @@ -8,6 +8,23 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.4.1] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages +- Limit file data that we store inline leading to less verbose debug logs + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility (for Options) +- Switch to native eyre traits instead of anyhow compatibility +- Use anyhow::Result type alias consistently + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.4.0] - 2024-08-17 ### 🚀 Features diff --git a/crates/konfigkoll_core/Cargo.toml b/crates/konfigkoll_core/Cargo.toml index 7d6f6cc..aad0340 100644 --- a/crates/konfigkoll_core/Cargo.toml +++ b/crates/konfigkoll_core/Cargo.toml @@ -5,7 +5,7 @@ license = "MPL-2.0" name = "konfigkoll_core" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.4.0" +version = "0.4.1" [dependencies] ahash.workspace = true @@ -17,11 +17,11 @@ duct.workspace = true either.workspace = true eyre.workspace = true itertools.workspace = true -konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" } +konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" } libc.workspace = true nix = { workspace = true, features = ["user"] } -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.4", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" } parking_lot.workspace = true rayon.workspace = true smallvec.workspace = true diff --git a/crates/konfigkoll_hwinfo/CHANGELOG.md b/crates/konfigkoll_hwinfo/CHANGELOG.md index 0af3966..02d49a1 100644 --- a/crates/konfigkoll_hwinfo/CHANGELOG.md +++ b/crates/konfigkoll_hwinfo/CHANGELOG.md @@ -8,6 +8,16 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.4] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.3] - 2024-08-17 ### ⚙️ Other stuff diff --git a/crates/konfigkoll_hwinfo/Cargo.toml b/crates/konfigkoll_hwinfo/Cargo.toml index 07b97ce..79c057f 100644 --- a/crates/konfigkoll_hwinfo/Cargo.toml +++ b/crates/konfigkoll_hwinfo/Cargo.toml @@ -5,7 +5,7 @@ license = "MPL-2.0" name = "konfigkoll_hwinfo" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.3" +version = "0.1.4" [features] rune = ["dep:rune"] diff --git a/crates/konfigkoll_script/CHANGELOG.md b/crates/konfigkoll_script/CHANGELOG.md index 5a19aef..14834a4 100644 --- a/crates/konfigkoll_script/CHANGELOG.md +++ b/crates/konfigkoll_script/CHANGELOG.md @@ -8,6 +8,23 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.5] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Improve formatting of Rune runtime errors +- Add spans to async functions exposed to Rune (should help get better errors with color-eyre) +- Switch from anyhow to color-eyre for better (and prettier) error messages +- Switch to custom error wrapper to better traverse the Rune callstacks + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.4] - 2024-08-17 ### 🚀 Features diff --git a/crates/konfigkoll_script/Cargo.toml b/crates/konfigkoll_script/Cargo.toml index 2b4819f..f89a455 100644 --- a/crates/konfigkoll_script/Cargo.toml +++ b/crates/konfigkoll_script/Cargo.toml @@ -5,7 +5,7 @@ license = "MPL-2.0" name = "konfigkoll_script" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.4" +version = "0.1.5" [dependencies] ahash.workspace = true @@ -16,12 +16,12 @@ eyre.workspace = true glob.workspace = true globset.workspace = true itertools.workspace = true -konfigkoll_hwinfo = { version = "0.1.3", path = "../konfigkoll_hwinfo", features = [ +konfigkoll_hwinfo = { version = "0.1.4", path = "../konfigkoll_hwinfo", features = [ "rune", ] } -konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" } -konfigkoll_utils = { version = "0.1.3", path = "../konfigkoll_utils" } -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } +konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" } +konfigkoll_utils = { version = "0.1.4", path = "../konfigkoll_utils" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } parking_lot.workspace = true regex.workspace = true rune-modules.workspace = true diff --git a/crates/konfigkoll_types/CHANGELOG.md b/crates/konfigkoll_types/CHANGELOG.md index 1e35d6c..3c5d765 100644 --- a/crates/konfigkoll_types/CHANGELOG.md +++ b/crates/konfigkoll_types/CHANGELOG.md @@ -8,6 +8,20 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.1] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.2.0] - 2024-08-17 ### 🚀 Features diff --git a/crates/konfigkoll_types/Cargo.toml b/crates/konfigkoll_types/Cargo.toml index d70e601..a27619f 100644 --- a/crates/konfigkoll_types/Cargo.toml +++ b/crates/konfigkoll_types/Cargo.toml @@ -5,15 +5,15 @@ license = "MPL-2.0" name = "konfigkoll_types" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.2.0" +version = "0.2.1" [dependencies] camino.workspace = true compact_str.workspace = true either.workspace = true eyre.workspace = true -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.4", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" } strum.workspace = true [lints] diff --git a/crates/konfigkoll_utils/CHANGELOG.md b/crates/konfigkoll_utils/CHANGELOG.md index 2beffc4..d44b33c 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.4] - 2024-09-06 + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.3] - 2024-08-17 ### ⚙️ Other stuff diff --git a/crates/konfigkoll_utils/Cargo.toml b/crates/konfigkoll_utils/Cargo.toml index 7f6e651..1560717 100644 --- a/crates/konfigkoll_utils/Cargo.toml +++ b/crates/konfigkoll_utils/Cargo.toml @@ -5,7 +5,7 @@ license = "MPL-2.0" name = "konfigkoll_utils" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.80.0" -version = "0.1.3" +version = "0.1.4" [dependencies] camino.workspace = true diff --git a/crates/mtree2/CHANGELOG.md b/crates/mtree2/CHANGELOG.md index d14157e..fd146b7 100644 --- a/crates/mtree2/CHANGELOG.md +++ b/crates/mtree2/CHANGELOG.md @@ -8,6 +8,16 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.6.6] - 2024-09-06 + +### ⚡ Performance improvements + +- Arch doesn't use device nodes at all in the mtree files, outline the data + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.6.5] - 2024-08-17 ### ⚙️ Other stuff diff --git a/crates/mtree2/Cargo.toml b/crates/mtree2/Cargo.toml index b6459d5..bbf56ef 100644 --- a/crates/mtree2/Cargo.toml +++ b/crates/mtree2/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0 OR MIT" name = "mtree2" readme = "README.md" repository = "https://github.com/VorpalBlade/paketkoll" -version = "0.6.5" +version = "0.6.6" [dependencies] bitflags.workspace = true diff --git a/crates/paketkoll/CHANGELOG.md b/crates/paketkoll/CHANGELOG.md index 4c7a573..dcce944 100644 --- a/crates/paketkoll/CHANGELOG.md +++ b/crates/paketkoll/CHANGELOG.md @@ -8,6 +8,21 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.3.5] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility +- Use anyhow::Result type alias consistently + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.3.4] - 2024-08-17 ### 🚀 Features diff --git a/crates/paketkoll/Cargo.toml b/crates/paketkoll/Cargo.toml index 35a64a7..4c7ee34 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.4" +version = "0.3.5" [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.4", path = "../paketkoll_core" } -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } +paketkoll_core = { version = "0.5.5", path = "../paketkoll_core" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } proc-exit.workspace = true rayon.workspace = true serde = { workspace = true, optional = true } diff --git a/crates/paketkoll_cache/CHANGELOG.md b/crates/paketkoll_cache/CHANGELOG.md index 83dfa29..df563c0 100644 --- a/crates/paketkoll_cache/CHANGELOG.md +++ b/crates/paketkoll_cache/CHANGELOG.md @@ -8,6 +8,21 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.4] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility (for Options) +- Switch to native eyre traits instead of anyhow compatibility + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.2.3] - 2024-08-17 ### 🐛 Bug fixes diff --git a/crates/paketkoll_cache/Cargo.toml b/crates/paketkoll_cache/Cargo.toml index ba83177..2c7f293 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.3" +version = "0.2.4" [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.1.4", path = "../paketkoll_types" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } serde.workspace = true smallvec.workspace = true tracing.workspace = true diff --git a/crates/paketkoll_core/CHANGELOG.md b/crates/paketkoll_core/CHANGELOG.md index 44907c3..69a4da6 100644 --- a/crates/paketkoll_core/CHANGELOG.md +++ b/crates/paketkoll_core/CHANGELOG.md @@ -8,6 +8,22 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.5.5] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility (for Options) +- Switch to native eyre traits instead of anyhow compatibility +- Use anyhow::Result type alias consistently + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.5.4] - 2024-08-17 ### 🚀 Features diff --git a/crates/paketkoll_core/Cargo.toml b/crates/paketkoll_core/Cargo.toml index 2706364..194c527 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.4" +version = "0.5.5" [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.5", path = "../mtree2", optional = true } +mtree2 = { version = "0.6.6", path = "../mtree2", optional = true } nix = { workspace = true, features = ["user"], optional = true } num_cpus.workspace = true -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.4", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" } parking_lot.workspace = true phf.workspace = true rayon.workspace = true @@ -84,7 +84,7 @@ rust-ini = { workspace = true, optional = true } scopeguard.workspace = true smallvec.workspace = true strum.workspace = true -systemd_tmpfiles = { version = "0.1.6", path = "../systemd_tmpfiles", optional = true } +systemd_tmpfiles = { version = "0.1.7", 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 f90bc4d..9c7dedf 100644 --- a/crates/paketkoll_types/CHANGELOG.md +++ b/crates/paketkoll_types/CHANGELOG.md @@ -8,6 +8,20 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.0] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.4] - 2024-08-17 ### 🐛 Bug fixes diff --git a/crates/paketkoll_types/Cargo.toml b/crates/paketkoll_types/Cargo.toml index 2d2c114..7123ee5 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.1.4" +version = "0.2.0" [dependencies] ahash.workspace = true diff --git a/crates/paketkoll_utils/CHANGELOG.md b/crates/paketkoll_utils/CHANGELOG.md index bdfa430..6e03939 100644 --- a/crates/paketkoll_utils/CHANGELOG.md +++ b/crates/paketkoll_utils/CHANGELOG.md @@ -8,6 +8,20 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.5] - 2024-09-06 + +### 🩺 Diagnostics & output formatting + +- Switch from anyhow to color-eyre for better (and prettier) error messages + +### 🚜 Refactoring + +- Switch to native eyre traits instead of anyhow compatibility + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.4] - 2024-08-17 ### ⚙️ Other stuff diff --git a/crates/paketkoll_utils/Cargo.toml b/crates/paketkoll_utils/Cargo.toml index 1c613d0..83aa92c 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.4" +version = "0.1.5" [dependencies] eyre.workspace = true -paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" } +paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" } ring.workspace = true [lints] diff --git a/crates/systemd_tmpfiles/CHANGELOG.md b/crates/systemd_tmpfiles/CHANGELOG.md index 83b1385..9ba9406 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.1.7] - 2024-09-06 + +### ⚙️ Other stuff + +- Use nightly import grouping in rustfmt + ## [0.1.6] - 2024-08-17 ### ⚙️ Other stuff diff --git a/crates/systemd_tmpfiles/Cargo.toml b/crates/systemd_tmpfiles/Cargo.toml index a6d9151..81d4314 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.1.6" +version = "0.1.7" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index 4daa0d4..494ce2c 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.6", path = "../konfigkoll" } -paketkoll = { version = "0.3.4", path = "../paketkoll" } +konfigkoll = { version = "0.1.7", path = "../konfigkoll" } +paketkoll = { version = "0.3.5", path = "../paketkoll" } tracing-subscriber.workspace = true tracing.workspace = true