From 40c16d19fdf6d258efbbe7a4810ec14c7b09fa2b Mon Sep 17 00:00:00 2001 From: Tim Bruijnzeels Date: Sun, 7 Jun 2020 20:53:14 +0200 Subject: [PATCH] Update versions and changelog for 0.6.3 release. --- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 8 +++++++- doc/openapi.yaml | 2 +- src/constants.rs | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ffa1c4f..f8ee4aeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -661,7 +661,7 @@ dependencies = [ [[package]] name = "krill" -version = "0.6.2" +version = "0.6.3" dependencies = [ "base64 0.10.1", "bcder", diff --git a/Cargo.toml b/Cargo.toml index f0de1cea..7b8d64e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "krill" -version = "0.6.2" +version = "0.6.3" edition = "2018" authors = [ "The NLnet Labs RPKI team " ] description = "Resource Public Key Infrastructure (RPKI) daemon" diff --git a/Changelog.md b/Changelog.md index 7ea9ab87..2fdd9c24 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,8 +3,14 @@ Please see [here](https://github.com/NLnetLabs/krill/projects?query=is%3Aopen+sort%3Aname-asc) for planned releases. -## Unreleased Changes +## 0.6.3 Release 'Play it again, Sam' +This release addresses an issue where users with a CA that has delegated children, which in turn +had performed a key roll over in the past, could not upgrade to Release 0.6.2. + +Users who already successfully upgraded to Release 0.6.2 do not need to upgrade urgently. This +release includes a number of fixes for minor issues, which will also be included in the 0.7.0 +Release which is due in 2-4 weeks: * `krillc issues` fails with `Error: Unknown API method` (#248) * `krillc parents` help text refers incorrectly to publisher request instead of child request (#251) * Normalize request/response `krillc help` texts (#252) diff --git a/doc/openapi.yaml b/doc/openapi.yaml index 88cbe8fd..379c4bb2 100644 --- a/doc/openapi.yaml +++ b/doc/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.2" info: title: Krill RPKI Server API - version: 0.6.2 + version: 0.6.3 description: | # Introduction Welcome to the documentation for the Krill server API, a JSON based diff --git a/src/constants.rs b/src/constants.rs index 86e4c4ce..9f68b247 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,4 +1,4 @@ -pub const KRILL_VERSION: &str = "0.6.2"; +pub const KRILL_VERSION: &str = "0.6.3"; pub const KRILL_SERVER_APP: &str = "Krill"; pub const KRILL_CLIENT_APP: &str = "Krill Client";