diff --git a/CHANGELOG.md b/CHANGELOG.md index 811d13c..c39b346 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,11 +11,14 @@ The format is based on [Keep a Changelog], and this project adheres to ## [Unreleased] +## [0.7.6] - 2025-04-22 + ### Added - Compile-time variable to specify package manager (to be set by each distribution) - Rules for `size` and `brew` +- General rule parsing for `runtime-rules` ### Changed @@ -306,7 +309,8 @@ normalized to `--nocnf` History start. -[unreleased]: https://github.com/iffse/pay-respects/compare/v0.7.5..HEAD +[unreleased]: https://github.com/iffse/pay-respects/compare/v0.7.6..HEAD +[0.7.6]: https://github.com/iffse/pay-respects/compare/v0.7.5..v0.7.6 [0.7.5]: https://github.com/iffse/pay-respects/compare/v0.7.4..v0.7.5 [0.7.4]: https://github.com/iffse/pay-respects/compare/v0.7.3..v0.7.4 [0.7.3]: https://github.com/iffse/pay-respects/compare/v0.7.2..v0.7.3 diff --git a/Cargo.lock b/Cargo.lock index efc61ce..e38a03f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,9 +34,9 @@ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" [[package]] name = "askama" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a4e46abb203e00ef226442d452769233142bbfdd79c3941e84c8e61c4112543" +checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7" dependencies = [ "askama_derive", "itoa", @@ -47,9 +47,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54398906821fd32c728135f7b351f0c7494ab95ae421d41b6f5a020e158f28a6" +checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac" dependencies = [ "askama_parser", "basic-toml", @@ -161,9 +161,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "cc" -version = "1.2.18" +version = "1.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525046617d8376e3db1deffb079e91cef90a89fc3ca5c185bbf8c9ecdd15cd5c" +checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362" dependencies = [ "shlex", ] @@ -768,9 +768,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.171" +version = "0.2.172" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" +checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" [[package]] name = "linux-raw-sys" @@ -902,7 +902,7 @@ dependencies = [ [[package]] name = "pay-respects" -version = "0.7.5" +version = "0.7.6" dependencies = [ "askama", "colored", @@ -934,7 +934,7 @@ dependencies = [ [[package]] name = "pay-respects-module-runtime-rules" -version = "0.1.9" +version = "0.1.10" dependencies = [ "pay-respects-utils", "regex-lite", @@ -990,9 +990,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" +checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" dependencies = [ "unicode-ident", ] @@ -1068,13 +1068,12 @@ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" [[package]] name = "rand" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" dependencies = [ "rand_chacha", "rand_core", - "zerocopy", ] [[package]] @@ -1443,9 +1442,9 @@ dependencies = [ [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" dependencies = [ "libc", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index 6dc224b..ab84460 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pay-respects" authors = ["iff "] -version = "0.7.5" +version = "0.7.6" edition = "2021" # for crates.io diff --git a/module-runtime-rules/Cargo.toml b/module-runtime-rules/Cargo.toml index f08b8e6..4d45803 100644 --- a/module-runtime-rules/Cargo.toml +++ b/module-runtime-rules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pay-respects-module-runtime-rules" -version = "0.1.9" +version = "0.1.10" edition = "2021" # for crates.io