From 37a8d3617efba8b62c56bb161c0269a01c255e27 Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Wed, 17 Jan 2024 10:16:23 +0100 Subject: [PATCH] Release 0.18.1. (#283) Bug fixes * The RTR server now returns the expected protocol version in the version negotiation error message rather than the requested version. ([#280]) * The RTR server does not accept protocol version 2 for now to avoid sending illegal ASPA PDUs. This is a workaround until the final format of the PDU is specified. ([#281]) * Fixed protocol version negotiation in the RTR client. It will now error out if the server responds with a version greater than the requested one rather just accepting it. ([#282]) --- Cargo.toml | 2 +- Changelog.md | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7e4b7c..459e96a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpki" -version = "0.18.1-dev" +version = "0.18.1" edition = "2021" rust-version = "1.63" authors = ["NLnet Labs "] diff --git a/Changelog.md b/Changelog.md index 725f415..2afc06a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,10 +1,8 @@ # Changelog -## Unreleased next version +## 0.18.1 -Breaking changes - -New +Released 2024-01-17. Bug fixes @@ -17,8 +15,6 @@ Bug fixes out if the server responds with a version greater than the requested one rather just accepting it. ([#282]) -Other changes - [#280]: https://github.com/NLnetLabs/rpki-rs/pull/280 [#281]: https://github.com/NLnetLabs/rpki-rs/pull/281 [#282]: https://github.com/NLnetLabs/rpki-rs/pull/282