Kyle Robbertze pushed to branch master at Debian OCaml Maintainers / ocaml-cry
Commits: ba87731a by Kyle Robbertze at 2022-05-27T16:46:39+02:00 New upstream version 0.6.7 - - - - - 8d49f4fd by Kyle Robbertze at 2022-05-27T16:46:40+02:00 Update upstream source from tag 'upstream/0.6.7' Update to upstream version '0.6.7' with Debian dir 9082593e0e072d93c005a5286b0964edb5b109d7 - - - - - b733e2c5 by Kyle Robbertze at 2022-05-27T16:47:20+02:00 Bump standards-version to 4.6.1 (no change) - - - - - 02a93f85 by Kyle Robbertze at 2022-05-28T18:56:07+02:00 prepare upload to unstable - - - - - 6 changed files: - CHANGES - cry.opam - debian/changelog - debian/control - dune-project - src/cry.ml Changes: ===================================== CHANGES ===================================== @@ -1,3 +1,8 @@ +0.6.7 (2022-03-18) +===== +* Default to ipv4 host resolution for backward + compatibility. + 0.6.6 (2022-01-30) ====== * Add support for ipv6 connection, ===================================== cry.opam ===================================== @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.6.6" +version: "0.6.7" synopsis: "OCaml client for the various icecast & shoutcast source protocols" description: "The cry library is an implementation of the various icecast & shoutcast protocols to connect to streaming servers such as icecast" ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +ocaml-cry (0.6.7-1) unstable; urgency=medium + + * New upstream version 0.6.7 + * Bump standards-version to 4.6.1 (no change) + + -- Kyle Robbertze <[email protected]> Fri, 27 May 2022 16:47:27 +0200 + ocaml-cry (0.6.6-1) unstable; urgency=medium * Team upload ===================================== debian/control ===================================== @@ -8,7 +8,7 @@ Build-Depends: debhelper-compat (=13), dh-ocaml, ocaml, libssl-ocaml-dev (>= 0.5.0) -Standards-Version: 4.6.0 +Standards-Version: 4.6.1 Homepage: https://www.liquidsoap.info/ Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-cry.git Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-cry ===================================== dune-project ===================================== @@ -1,5 +1,5 @@ (lang dune 2.8) -(version 0.6.6) +(version 0.6.7) (name cry) (source (github savonet/ocaml-cry)) (license GPL-2.0) ===================================== src/cry.ml ===================================== @@ -429,7 +429,7 @@ let resolve_host host port = Unix.getaddrinfo host (string_of_int port) [AI_SOCKTYPE SOCK_STREAM] with | [] -> raise Not_found - | l -> l + | l -> List.rev l let add_host_header ?(force = false) headers host port = try View it on GitLab: https://salsa.debian.org/ocaml-team/ocaml-cry/-/compare/bb190127f5c5b1874ca5db729382196c162f3d1d...02a93f85dc6b9f158853587647a12944ffe7c3e7 -- View it on GitLab: https://salsa.debian.org/ocaml-team/ocaml-cry/-/compare/bb190127f5c5b1874ca5db729382196c162f3d1d...02a93f85dc6b9f158853587647a12944ffe7c3e7 You're receiving this email because of your account on salsa.debian.org.

