From f0b9c308a4a0bb14d60afb432310cf492a4d75b6 Mon Sep 17 00:00:00 2001 From: Ilson Roberto Balliego Junior Date: Tue, 27 Feb 2024 22:42:19 +0100 Subject: [PATCH] update changelog and simple-dns version --- Cargo.lock | 2 +- simple-dns/CHANGELOG.md | 5 +++++ simple-dns/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c60f264..965ddfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -679,7 +679,7 @@ dependencies = [ [[package]] name = "simple-dns" -version = "0.6.1" +version = "0.6.2" dependencies = [ "bitflags 2.4.2", "criterion", diff --git a/simple-dns/CHANGELOG.md b/simple-dns/CHANGELOG.md index 6ab52dc..715ccbc 100644 --- a/simple-dns/CHANGELOG.md +++ b/simple-dns/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.6.2 (2024-02-27) + +### Added +- Add NAPTR record type parsing (RFC 3403) + # 0.6.1 (2024-02-11) ### Fix diff --git a/simple-dns/Cargo.toml b/simple-dns/Cargo.toml index f4ec8c4..761340f 100644 --- a/simple-dns/Cargo.toml +++ b/simple-dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-dns" -version = "0.6.1" +version = "0.6.2" authors = ["Ilson Roberto Balliego Junior "] edition = "2021" description = "Rust implementation to parse and write DNS packets"