diff --git a/CHANGELOG.md b/CHANGELOG.md index 9038669..4f1152d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.10.0] + +### Fixed + +- dhcpv6: Fix OPTION_STATUS_CODE parsing. After a status code option, all following options will be corrupted + ### Added - add v4 options 21/24/25/34 & 62..65 & 68..77 @@ -15,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Picked more consistent name & casing for option types +- remove Domain type and just re-export trust-dns Name ## [0.9.0] diff --git a/Cargo.lock b/Cargo.lock index fd53bfa..f76f223 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,7 +196,7 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" [[package]] name = "dhcproto" -version = "0.10.0-alpha" +version = "0.10.0" dependencies = [ "criterion", "dhcproto-macros", diff --git a/Cargo.toml b/Cargo.toml index ac695d7..01f670d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,17 @@ [package] name = "dhcproto" -version = "0.10.0-alpha" -authors = ["Ian Laidlaw ", "Evan Cameron "] +version = "0.10.0" +authors = [ + "Ian Laidlaw ", + "Evan Cameron ", +] edition = "2021" description = """ A DHCP parser and encoder for DHCPv4/DHCPv6. `dhcproto` aims to be a functionally complete DHCP implementation. """ -categories = ["network-programming", "encoding","parser-implementations"] +categories = ["network-programming", "encoding", "parser-implementations"] repository = "https://github.com/bluecatengineering/dhcproto" -keywords = ["dhcp","dhcpv4","dhcpv6"] +keywords = ["dhcp", "dhcpv4", "dhcpv6"] license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -24,7 +27,12 @@ ipnet = "2.5" [features] default = [] -serde = ["dep:serde", "url/serde", "ipnet/serde", "trust-dns-proto/serde-config"] +serde = [ + "dep:serde", + "url/serde", + "ipnet/serde", + "trust-dns-proto/serde-config", +] [dev-dependencies] criterion = "0.4.0"