From 842b88da1b699f8c087e15696f76f6e0f47055c8 Mon Sep 17 00:00:00 2001 From: Romain Calascibetta Date: Fri, 4 Mar 2022 16:08:44 +0100 Subject: [PATCH] Prepare v5.3.0 --- CHANGES.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index a504e88..5c4cefa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +## v5.3.0 (2022-03-04) + +* Add `with_port_of_string` function (@dinosaure, @hannesm, #108) +* **breaking-change** Be restrictive on `Ipaddr.of_string` (@dinosaure, @hannesm, #109) + Before this release, `Ipaddr.of_string` accepts remaining bytes and returns + a valid value such as `"127.0.0.1aaaa"` is valid. Now, `ipaddr` does not + accept a string with remaining bytes. + ## v5.2.0 (2021-09-11) * Use Cstruct.length instead of deprecated Cstruct.len (#106, @hannesm)