Skip to content

Commit c9c8438

Browse files
authored
Release 0.14.5-rc1. (#1214)
New * Allow overriding the initial manifest number when initializing the TA signer, either by specifying `--initial_manifest_number` in the CLI or by including `ta_mft_nr_override: #nr` in the `ImportTa` JSON. ([#1178]) * Allow overriding the TA manifest number when signing a TA proxy request by specifying `--ta_mft_number_override` in the CLI. ([#1178]) Bug fixes * Prevent empty RRDP delta lists to be produced. ([#1181]) * Correctly encode empty revocation lists in CRLs. (via [rpki-rs#295]) * Allow read access to the RIS dump while downloading a new dump. ([#1179]) * Don’t apply “child revoke key” command if the resource class does not exist. ([#1208]) Other changes * The minimum supported Rust version is now 1.70.0. ([#1198])
1 parent 85b5671 commit c9c8438

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
# Note: some of these values are also used when building Debian packages below.
33
name = "krill"
4-
version = "0.14.5-dev"
4+
version = "0.14.5-rc1"
55
edition = "2018"
66
rust-version = "1.70"
77
authors = ["NLnet Labs <[email protected]>"]
@@ -50,8 +50,7 @@ rand = "^0.8"
5050
regex = { version = "1.5.5", optional = true, default_features = false, features = [ "std" ] }
5151
reqwest = { version = "0.11", features = ["json"] }
5252
rpassword = { version = "^5.0", optional = true }
53-
#rpki = { version = "0.18.0", features = ["ca", "compat", "rrdp"] }
54-
rpki = { git = "https://github.com/nLnetLabs/rpki-rs", features = [ "ca", "compat", "rrdp" ] }
53+
rpki = { version = "0.18.4", features = ["ca", "compat", "rrdp"] }
5554
rustls-pemfile = "1.0.4"
5655
scrypt = { version = "^0.6", optional = true, default-features = false }
5756
serde = { version = "^1.0", features = ["derive", "rc"] }

Changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Change Log
22

3-
## Unreleased next version
3+
## 0.14.5-rc1
44

5-
Breaking Changes
5+
Released 2024-06-21.
66

77
New
88

0 commit comments

Comments
 (0)