Skip to content

Commit

Permalink
Merge pull request #47 from NLnetLabs/release-0.4.1
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
density215 authored Jan 29, 2025
2 parents 719dc2b + e06b909 commit df35d8c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ version = "0.4.1"
edition = "2021"
authors = ["NLnet Labs <[email protected]>"]
license = "BSD-3-Clause"
rust-version = "1.80"
rust-version = "1.82"

[dependencies]
crossbeam-epoch = "^0.9"
Expand Down Expand Up @@ -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"
10 changes: 4 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit df35d8c

Please sign in to comment.