Releases: mirage/ocaml-ipaddr
Releases · mirage/ocaml-ipaddr
5.6.2
5.6.1
5.6.0
CHANGES:
- Add host and subnet Seq.t iterators for Ipaddr.V4.prefix, Ipaddr.V6.Prefix
and Ipaddr.Prefix (#107 @verbosemode @dinosaure) - Ipaddr.V4.compare: use Int32.unsigned_compare, as provided since OCaml 4.08
(#118 @reynir) - Ipaddr.V6.t is a string, not a byte vector anymore (so it is immutable)
(#119 @reynir, restoring 4.08 compatibility #121) - Provide Ipaddr.Prefix.address (since 5.0.0, Ipaddr.V4.Prefix.address and
Ipaddr.V6.Prefix.address have been provided, but Ipaddr.Prefix.address was
forgotten) (#122 @hannesm) - Fix further docstrings (#123, fixes #81, @hannesm @reynir)
5.5.0
5.4.0
5.3.1
5.3.0
CHANGES:
- Add
with_port_of_stringfunction (@dinosaure, @hannesm, #108) - breaking-change Be restrictive on
Ipaddr.of_string(@dinosaure, @hannesm, #109)
Before this release,Ipaddr.of_stringaccepts remaining bytes and returns
a valid value such as"127.0.0.1aaaa"is valid. Now,ipaddrdoes not
accept a string with remaining bytes.