From ae2db56825d70c966dd9889c8b3c3ff94126f897 Mon Sep 17 00:00:00 2001 From: Jasper den Hertog Date: Wed, 29 Jan 2025 14:20:49 +0100 Subject: [PATCH 1/4] Bump version to 0.4.1 --- Changelog.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Changelog.md b/Changelog.md index a042c8d..9a51f35 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,15 +1,13 @@ # Change Log -## Unreleased new version +## 0.4.1 -Release yyyy-mm-yy. - -Breaking changes - -New +Release 2025-01-29. Bug fixes +* Incorrect Error message in case the status of a prefix was modified without it actually existing in the store, is now fixed. It was `StoreNotReady`, it has been changed to `PrefixNotFound`. + ## 0.4.0 Released 2024-11-20. From 0d5c82a797244a9d3fb064a5ce4c415503c3af4a Mon Sep 17 00:00:00 2001 From: Jasper den Hertog Date: Wed, 29 Jan 2025 14:49:02 +0100 Subject: [PATCH 2/4] minimal rust version 1.82 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f91ae5f..fcb9369 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ version = "0.4.1" edition = "2021" authors = ["NLnet Labs "] license = "BSD-3-Clause" -rust-version = "1.80" +rust-version = "1.82" [dependencies] crossbeam-epoch = "^0.9" From 88a391ba4365d03e59770dfc941ec0397f6f3cdb Mon Sep 17 00:00:00 2001 From: Jasper den Hertog Date: Wed, 29 Jan 2025 14:50:53 +0100 Subject: [PATCH 3/4] minimal rust version 1.82 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51e7049..7f95fb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: # according to Cargo.toml. Test against beta and nightly Rust to get # early warning of any problems that might occur with the upcoming Rust # release. Ordered oldest Rust to newest Rust. - rust: [1.80.0, stable, beta, nightly] + rust: [1.82.0, stable, beta, nightly] # Test with no features, default features ("") and all features. # Ordered fewest features to most features. From e06b909ae027564e87d939d7288644c999f91cb8 Mon Sep 17 00:00:00 2001 From: Jasper den Hertog Date: Wed, 29 Jan 2025 15:15:51 +0100 Subject: [PATCH 4/4] Stop Clippy Now! Campaign --- Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index fcb9369..df95ac2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,3 +49,12 @@ default = [] [[bin]] name = "cli" required-features = ["cli"] + +[lints.clippy] +needless_lifetimes = "allow" +extra_unused_lifetimes = "allow" +empty_line_after_outer_attr = "allow" +empty_line_after_doc_comments = "allow" + +[lints.rust] +elided_named_lifetimes = "allow"