diff --git a/Cargo.lock b/Cargo.lock index c8b767bc..4c7c8886 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1104,7 +1104,7 @@ dependencies = [ [[package]] name = "konfigkoll" -version = "0.1.2" +version = "0.1.3" dependencies = [ "ahash", "anyhow", @@ -1134,7 +1134,7 @@ dependencies = [ [[package]] name = "konfigkoll_core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "ahash", "anyhow", @@ -1163,7 +1163,7 @@ dependencies = [ [[package]] name = "konfigkoll_hwinfo" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ahash", "anyhow", @@ -1176,7 +1176,7 @@ dependencies = [ [[package]] name = "konfigkoll_script" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ahash", "anyhow", @@ -1209,7 +1209,7 @@ dependencies = [ [[package]] name = "konfigkoll_types" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ahash", "anyhow", @@ -1403,7 +1403,7 @@ dependencies = [ [[package]] name = "mtree2" -version = "0.6.2" +version = "0.6.3" dependencies = [ "bitflags 2.6.0", "faster-hex", @@ -1701,7 +1701,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "paketkoll" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ahash", "anyhow", @@ -1721,7 +1721,7 @@ dependencies = [ [[package]] name = "paketkoll_cache" -version = "0.1.0" +version = "0.2.0" dependencies = [ "ahash", "anyhow", @@ -1736,7 +1736,7 @@ dependencies = [ [[package]] name = "paketkoll_core" -version = "0.5.0" +version = "0.5.1" dependencies = [ "ahash", "anyhow", @@ -1781,7 +1781,7 @@ dependencies = [ [[package]] name = "paketkoll_types" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ahash", "anyhow", @@ -1801,7 +1801,7 @@ dependencies = [ [[package]] name = "paketkoll_utils" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "paketkoll_types", @@ -2747,7 +2747,7 @@ dependencies = [ [[package]] name = "systemd_tmpfiles" -version = "0.1.2" +version = "0.1.3" dependencies = [ "base64-simd", "bitflags 2.6.0", diff --git a/crates/konfigkoll/CHANGELOG.md b/crates/konfigkoll/CHANGELOG.md index 3dba5470..d1a0da30 100644 --- a/crates/konfigkoll/CHANGELOG.md +++ b/crates/konfigkoll/CHANGELOG.md @@ -8,6 +8,30 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.3] - 2024-07-27 + +### 🚀 Features + +- Disk cache & archive-based file backend for Debian + +### 🚜 Refactoring + +- Make `konfigkoll_script` independent of `konfigkoll_core` +- Restructure `paketkoll_cache` + +### 📚 Documentation + +- Development docs & misc updates +- Spell check code comments + +### ⚙️ Other stuff + +- Format strings using nightly rustfmt +- Run rustfmt with nightly `imports_granularity = "Item"` +- Clean up trailing ws +- Reformat Cargo.toml files & imports +- Use RustRover Optimise imports + ## [0.1.2] - 2024-07-25 ### 🐛 Bug fixes diff --git a/crates/konfigkoll/Cargo.toml b/crates/konfigkoll/Cargo.toml index 4c5407b2..55d64815 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.79.0" -version = "0.1.2" +version = "0.1.3" [[bin]] name = "konfigkoll" @@ -45,14 +45,14 @@ dashmap.workspace = true directories.workspace = true either.workspace = true itertools.workspace = true -konfigkoll_core = { version = "0.1.0", path = "../konfigkoll_core" } -konfigkoll_script = { version = "0.1.0", path = "../konfigkoll_script" } -konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" } +konfigkoll_core = { version = "0.2.0", path = "../konfigkoll_core" } +konfigkoll_script = { version = "0.1.1", path = "../konfigkoll_script" } +konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" } konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" } ouroboros.workspace = true -paketkoll_cache = { version = "0.1.0", path = "../paketkoll_cache" } -paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" } -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" } +paketkoll_cache = { version = "0.2.0", path = "../paketkoll_cache" } +paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" } rayon.workspace = true rune = { workspace = true, features = ["cli"] } tokio = { workspace = true, features = [ diff --git a/crates/konfigkoll_core/CHANGELOG.md b/crates/konfigkoll_core/CHANGELOG.md index 7747ea37..1abff2ea 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.2.0] - 2024-07-27 + +### 🚜 Refactoring + +- Make `konfigkoll_script` independent of `konfigkoll_core` + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Format strings using nightly rustfmt +- Run rustfmt with nightly `imports_granularity = "Item"` +- Clean up unneeded paths for imported items +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is the initial release of the `konfigkoll_core` crate. diff --git a/crates/konfigkoll_core/Cargo.toml b/crates/konfigkoll_core/Cargo.toml index 8934dba1..e10dfae1 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.79.0" -version = "0.1.0" +version = "0.2.0" [dependencies] ahash.workspace = true @@ -17,12 +17,12 @@ console.workspace = true duct.workspace = true either.workspace = true itertools.workspace = true -konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" } +konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" } konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" } libc.workspace = true nix = { workspace = true, features = ["user"] } -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" } parking_lot.workspace = true rayon.workspace = true regex.workspace = true diff --git a/crates/konfigkoll_hwinfo/CHANGELOG.md b/crates/konfigkoll_hwinfo/CHANGELOG.md index 12c49d2c..2c751c5c 100644 --- a/crates/konfigkoll_hwinfo/CHANGELOG.md +++ b/crates/konfigkoll_hwinfo/CHANGELOG.md @@ -8,6 +8,17 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.1] - 2024-07-27 + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Run rustfmt with nightly `imports_granularity = "Item"` +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is the initial release of the `konfigkoll_hwinfo` crate. diff --git a/crates/konfigkoll_hwinfo/Cargo.toml b/crates/konfigkoll_hwinfo/Cargo.toml index a43cd909..137d2732 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.79.0" -version = "0.1.0" +version = "0.1.1" [dependencies] ahash.workspace = true diff --git a/crates/konfigkoll_script/CHANGELOG.md b/crates/konfigkoll_script/CHANGELOG.md index 0ef8c344..2bb6d210 100644 --- a/crates/konfigkoll_script/CHANGELOG.md +++ b/crates/konfigkoll_script/CHANGELOG.md @@ -8,6 +8,25 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.1] - 2024-07-27 + +### 🚜 Refactoring + +- Make `konfigkoll_script` independent of `konfigkoll_core` + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Format strings using nightly rustfmt +- Run rustfmt with nightly `imports_granularity = "Item"` +- Clean up trailing ws +- Reformat Cargo.toml files & imports +- Clean up unneeded paths for imported items +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is the initial release of the `konfigkoll_script` crate. diff --git a/crates/konfigkoll_script/Cargo.toml b/crates/konfigkoll_script/Cargo.toml index 7976735e..cec950a2 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.79.0" -version = "0.1.0" +version = "0.1.1" [features] # Default features @@ -24,17 +24,17 @@ camino.workspace = true compact_str.workspace = true glob.workspace = true itertools.workspace = true -konfigkoll_hwinfo = { version = "0.1.0", path = "../konfigkoll_hwinfo", features = [ +konfigkoll_hwinfo = { version = "0.1.1", path = "../konfigkoll_hwinfo", features = [ "rune", ] } -konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" } +konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" } konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" } nix = { workspace = true, features = ["user"] } -paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" } -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types", features = [ +paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types", features = [ "serde", ] } -paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" } +paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" } parking_lot.workspace = true regex.workspace = true rune-modules = { workspace = true, features = [ diff --git a/crates/konfigkoll_types/CHANGELOG.md b/crates/konfigkoll_types/CHANGELOG.md index 1d6c8953..bd1e28aa 100644 --- a/crates/konfigkoll_types/CHANGELOG.md +++ b/crates/konfigkoll_types/CHANGELOG.md @@ -8,6 +8,13 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.1] - 2024-07-27 + +### ⚙️ Other stuff + +- Run rustfmt with nightly `imports_granularity = "Item"` +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is the initial release of the `konfigkoll_types` crate. diff --git a/crates/konfigkoll_types/Cargo.toml b/crates/konfigkoll_types/Cargo.toml index 9f4525f2..7577edeb 100644 --- a/crates/konfigkoll_types/Cargo.toml +++ b/crates/konfigkoll_types/Cargo.toml @@ -5,7 +5,7 @@ license = "MPL-2.0" name = "konfigkoll_types" repository = "https://github.com/VorpalBlade/paketkoll" rust-version = "1.79.0" -version = "0.1.0" +version = "0.1.1" [dependencies] ahash.workspace = true @@ -14,8 +14,8 @@ bitflags.workspace = true camino.workspace = true compact_str.workspace = true either.workspace = true -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" } strum.workspace = true [lints] diff --git a/crates/konfigkoll_utils/CHANGELOG.md b/crates/konfigkoll_utils/CHANGELOG.md new file mode 100644 index 00000000..49f6e741 --- /dev/null +++ b/crates/konfigkoll_utils/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +All notable changes to this project will be documented in this file. +Keep in mind that this is only updated when releases are made and the file +is generated automatically from commit messages (and may or may not be lightly +edited). + +For a possibly more edited message focused on the binary please see the github +releases. + +## [0.1.0] - 2024-07-27 + +### 🚜 Refactoring + +- Make `konfigkoll_script` independent of `konfigkoll_core` + +### ⚙️ Other stuff + +- Run rustfmt with nightly `imports_granularity = "Item"` +- Reformat Cargo.toml files & imports diff --git a/crates/mtree2/CHANGELOG.md b/crates/mtree2/CHANGELOG.md index 477294f6..be765269 100644 --- a/crates/mtree2/CHANGELOG.md +++ b/crates/mtree2/CHANGELOG.md @@ -8,6 +8,19 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.6.3] - 2024-07-27 + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Run rustfmt with nightly `imports_granularity = "Item"` +- Clean up unneeded paths for imported items +- Follow naming conventions +- Use RustRover Optimise imports + ## [0.6.2] - 2024-07-25 ### 🚜 Refactoring diff --git a/crates/mtree2/Cargo.toml b/crates/mtree2/Cargo.toml index 4f949baa..1e2a0898 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.2" +version = "0.6.3" [dependencies] bitflags.workspace = true diff --git a/crates/paketkoll/CHANGELOG.md b/crates/paketkoll/CHANGELOG.md index d6d280db..6f22c715 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.1] - 2024-07-27 + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Format strings using nightly rustfmt +- Run rustfmt with nightly `imports_granularity = "Item"` +- Clean up trailing ws +- Debug UI for inspecting files from downloaded archives +- Clean up unneeded paths for imported items +- Use RustRover Optimise imports + ## [0.3.0] - 2024-07-25 This is a massive release, as `konfigkoll` was introduced as a new command. diff --git a/crates/paketkoll/Cargo.toml b/crates/paketkoll/Cargo.toml index 0f64f544..3ba67727 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.79.0" -version = "0.3.0" +version = "0.3.1" [features] # Default features @@ -38,8 +38,8 @@ compact_str.workspace = true env_logger.workspace = true log.workspace = true os_info.workspace = true -paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" } -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" } +paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" } proc-exit.workspace = true rayon.workspace = true serde = { workspace = true, optional = true, features = ["serde_derive"] } diff --git a/crates/paketkoll_cache/CHANGELOG.md b/crates/paketkoll_cache/CHANGELOG.md index 9b7b5a18..80d17055 100644 --- a/crates/paketkoll_cache/CHANGELOG.md +++ b/crates/paketkoll_cache/CHANGELOG.md @@ -8,6 +8,29 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.2.0] - 2024-07-27 + +### 🚀 Features + +- Disk cache & archive-based files for Debian +- Cache for getting files from downloaded archives +- Get files from downloaded archives + +### 🚜 Refactoring + +- Restructure `paketkoll_cache` + +### ⚡ Performance improvements + +- Enable refresh on disk cache + +### ⚙️ Other stuff + +- Run rustfmt with nightly `imports_granularity = "Item"` +- Reformat Cargo.toml files & imports +- Clean up unneeded paths for imported items +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is the first release of the `paketkoll_cache` crate. diff --git a/crates/paketkoll_cache/Cargo.toml b/crates/paketkoll_cache/Cargo.toml index cc2f0006..2555532d 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.79.0" -version = "0.1.0" +version = "0.2.0" [dependencies] ahash.workspace = true @@ -18,7 +18,7 @@ cached = { workspace = true, features = [ ], default-features = false } compact_str.workspace = true dashmap.workspace = true -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types", features = [ +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types", features = [ "serde", ] } rayon.workspace = true diff --git a/crates/paketkoll_core/CHANGELOG.md b/crates/paketkoll_core/CHANGELOG.md index baf6e2ba..5dafb672 100644 --- a/crates/paketkoll_core/CHANGELOG.md +++ b/crates/paketkoll_core/CHANGELOG.md @@ -8,6 +8,31 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.5.1] - 2024-07-27 + +### 🚀 Features + +- Use --no-install-recommends for Debian backend +- Disk cache & archive-based files for Debian +- Get files from downloaded archives + +### 🚜 Refactoring + +- Refactor `original_files` + +### 📚 Documentation + +- Spell check code comments +- Spell check + +### ⚙️ Other stuff + +- Format strings using nightly rustfmt +- Run rustfmt with nightly `imports_granularity = "Item"` +- Clean up trailing ws +- Clean up unneeded paths for imported items +- Use RustRover Optimise imports + ## [0.5.0] - 2024-07-25 ### 🚀 Features diff --git a/crates/paketkoll_core/Cargo.toml b/crates/paketkoll_core/Cargo.toml index c2a13d64..fbdd65eb 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.79.0" -version = "0.5.0" +version = "0.5.1" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -94,11 +94,11 @@ lasso = { workspace = true, features = [ libc.workspace = true log.workspace = true md-5 = { workspace = true, optional = true } -mtree2 = { version = "0.6.2", path = "../mtree2", optional = true } +mtree2 = { version = "0.6.3", path = "../mtree2", optional = true } nix = { workspace = true, features = ["user"], optional = true } num_cpus.workspace = true -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" } -paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" } +paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" } phf = { workspace = true, features = ["macros"] } rayon.workspace = true regex.workspace = true @@ -108,7 +108,7 @@ scopeguard.workspace = true serde = { workspace = true, optional = true, features = ["derive"] } smallvec.workspace = true strum.workspace = true -systemd_tmpfiles = { version = "0.1.2", path = "../systemd_tmpfiles", optional = true } +systemd_tmpfiles = { version = "0.1.3", path = "../systemd_tmpfiles", optional = true } tar = { workspace = true, optional = true } xz2 = { workspace = true, optional = true } zstd = { workspace = true, optional = true } diff --git a/crates/paketkoll_types/CHANGELOG.md b/crates/paketkoll_types/CHANGELOG.md index ea199646..fbfafab7 100644 --- a/crates/paketkoll_types/CHANGELOG.md +++ b/crates/paketkoll_types/CHANGELOG.md @@ -8,6 +8,24 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.1] - 2024-07-27 + +### 🚀 Features + +- Disk cache & archive-based files for Debian +- Get files from downloaded archives + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Run rustfmt with nightly `imports_granularity = "Item"` +- Reformat Cargo.toml files & imports +- Clean up unneeded paths for imported items +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is code that has been extracted from the `paketkoll_core` crate and is diff --git a/crates/paketkoll_types/Cargo.toml b/crates/paketkoll_types/Cargo.toml index 59784d62..43b05f40 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.79.0" -version = "0.1.0" +version = "0.1.1" [features] # Include support for serde on public datatypes diff --git a/crates/paketkoll_utils/CHANGELOG.md b/crates/paketkoll_utils/CHANGELOG.md index 621f1b0f..acc71f52 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.1] - 2024-07-27 + +### ⚙️ Other stuff + +- Use RustRover Optimise imports + ## [0.1.0] - 2024-07-25 This is the initial release of the `paketkoll_utils` crate. diff --git a/crates/paketkoll_utils/Cargo.toml b/crates/paketkoll_utils/Cargo.toml index 00ea7077..bc64b3fd 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.79.0" -version = "0.1.0" +version = "0.1.1" [dependencies] anyhow.workspace = true -paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" } +paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" } ring.workspace = true [lints] diff --git a/crates/systemd_tmpfiles/CHANGELOG.md b/crates/systemd_tmpfiles/CHANGELOG.md index 35d6a0a2..1e3e92a3 100644 --- a/crates/systemd_tmpfiles/CHANGELOG.md +++ b/crates/systemd_tmpfiles/CHANGELOG.md @@ -8,6 +8,18 @@ edited). For a possibly more edited message focused on the binary please see the github releases. +## [0.1.3] - 2024-07-27 + +### 📚 Documentation + +- Spell check code comments + +### ⚙️ Other stuff + +- Format strings using nightly rustfmt +- Run rustfmt with nightly `imports_granularity = "Item"` +- Use RustRover Optimise imports + ## [0.1.2] - 2024-07-25 ### 🚜 Refactoring diff --git a/crates/systemd_tmpfiles/Cargo.toml b/crates/systemd_tmpfiles/Cargo.toml index 28afd14f..2317e75c 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.79.0" -version = "0.1.2" +version = "0.1.3" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index 59e3be50..29e52754 100644 --- a/crates/xtask/Cargo.toml +++ b/crates/xtask/Cargo.toml @@ -31,9 +31,9 @@ clap = { workspace = true, features = ["derive"] } clap_complete.workspace = true clap_mangen.workspace = true env_logger.workspace = true -konfigkoll = { version = "0.1.0", path = "../konfigkoll" } +konfigkoll = { version = "0.1.3", path = "../konfigkoll" } log.workspace = true -paketkoll = { version = "0.3.0", path = "../paketkoll" } +paketkoll = { version = "0.3.1", path = "../paketkoll" } [lints] workspace = true diff --git a/release-plz.toml b/release-plz.toml index d1092e9c..63c78445 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -5,6 +5,10 @@ git_release_enable = false name = "xtask" release = false +[[package]] +name = "konfigkoll_script" +publish_features = ["arch_linux", "debian"] + [[package]] name = "paketkoll_core" publish_features = ["arch_linux", "debian", "serde"]