[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ocaml-team/ocaml-cry][master] 4 commits: New upstream version 0.6.7



Title: GitLab

Kyle Robbertze pushed to branch master at Debian OCaml Maintainers / ocaml-cry

Commits:

6 changed files:

Changes:

  • CHANGES
    1
    +0.6.7 (2022-03-18)
    
    2
    +=====
    
    3
    +* Default to ipv4 host resolution for backward
    
    4
    +  compatibility.
    
    5
    +
    
    1 6
     0.6.6 (2022-01-30)
    
    2 7
     ======
    
    3 8
     * Add support for ipv6 connection,
    

  • cry.opam
    1 1
     # This file is generated by dune, edit dune-project instead
    
    2 2
     opam-version: "2.0"
    
    3
    -version: "0.6.6"
    
    3
    +version: "0.6.7"
    
    4 4
     synopsis: "OCaml client for the various icecast & shoutcast source protocols"
    
    5 5
     description:
    
    6 6
       "The cry library is an implementation of the various icecast & shoutcast protocols to connect to streaming servers such as icecast"
    

  • debian/changelog
    1
    +ocaml-cry (0.6.7-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * New upstream version 0.6.7
    
    4
    +  * Bump standards-version to 4.6.1 (no change)
    
    5
    +
    
    6
    + -- Kyle Robbertze <paddatrapper@debian.org>  Fri, 27 May 2022 16:47:27 +0200
    
    7
    +
    
    1 8
     ocaml-cry (0.6.6-1) unstable; urgency=medium
    
    2 9
     
    
    3 10
       * Team upload
    

  • debian/control
    ... ... @@ -8,7 +8,7 @@ Build-Depends: debhelper-compat (=13),
    8 8
                    dh-ocaml,
    
    9 9
                    ocaml,
    
    10 10
                    libssl-ocaml-dev (>= 0.5.0)
    
    11
    -Standards-Version: 4.6.0
    
    11
    +Standards-Version: 4.6.1
    
    12 12
     Homepage: https://www.liquidsoap.info/
    
    13 13
     Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-cry.git
    
    14 14
     Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-cry
    

  • dune-project
    1 1
     (lang dune 2.8)
    
    2
    -(version 0.6.6)
    
    2
    +(version 0.6.7)
    
    3 3
     (name cry)
    
    4 4
     (source (github savonet/ocaml-cry))
    
    5 5
     (license GPL-2.0)
    

  • src/cry.ml
    ... ... @@ -429,7 +429,7 @@ let resolve_host host port =
    429 429
         Unix.getaddrinfo host (string_of_int port) [AI_SOCKTYPE SOCK_STREAM]
    
    430 430
       with
    
    431 431
         | [] -> raise Not_found
    
    432
    -    | l -> l
    
    432
    +    | l -> List.rev l
    
    433 433
     
    
    434 434
     let add_host_header ?(force = false) headers host port =
    
    435 435
       try
    


  • Reply to: