From 0ce0b640ac42099190ba6e8d707c37cb0214bc25 Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Wed, 5 Jul 2023 14:02:26 +0200 Subject: [PATCH] Release 0.17.0. (#268) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Breaking changes * Dropped dependency on _routecore_ again and moved all used types into _rpki-rs_. The new module `resources` contains the AS and IP address resources. The BGPsec key identifier is now an actual type in `crypto::keys`. ([#261]) * Changed the implementation of ASPA objects to conform with version 15 of the profile draft. ([#264], [#265]) * Changed the ASPA RTR PDU to not use the AFI flags any more and always set it to 0. ([#264]) New * Made `rtr::server::NotifyReceiver` public. ([#259]) * Added an exclusion check to SLURM’s router key filters and provided type-specific check methods for the other types. ([#260]) * Added a new module `util::base64` that provides Base 64 encoding of data for various scenarios. ([#263]) --- Cargo.toml | 2 +- Changelog.md | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 95606c0..1f84506 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpki" -version = "0.16.2-dev" +version = "0.17.0" edition = "2021" rust-version = "1.63" authors = ["The NLnet Labs RPKI Team "] diff --git a/Changelog.md b/Changelog.md index d9506ef..2e5504c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,8 @@ # Changelog -## Unreleased next version +## 0.17.0 + +Released 2023-07-05. Breaking changes @@ -21,10 +23,6 @@ New * Added a new module `util::base64` that provides Base 64 encoding of data for various scenarios. ([#263]) -Bug fixes - -Other changes - [#259]: https://github.com/NLnetLabs/rpki-rs/pull/259 [#260]: https://github.com/NLnetLabs/rpki-rs/pull/260 [#261]: https://github.com/NLnetLabs/rpki-rs/pull/261