curl 1.3 → 1.3.1
raw patch · 9 files changed
+12/−19 lines, 9 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Network/Curl.hs +2/−2
- Network/Curl/Code.hs +0/−1
- Network/Curl/Debug.hs +1/−1
- Network/Curl/Easy.hs +1/−2
- Network/Curl/Info.hs +0/−1
- Network/Curl/Opts.hs +1/−2
- Network/Curl/Post.hs +0/−1
- Network/Curl/Types.hs +0/−1
- curl.cabal +7/−8
Network/Curl.hs view
@@ -4,12 +4,11 @@ -- Copyright : (c) Galois Inc 2007-8 -- License : BSD3 ----- Author: Sigbjorn Finne, Iavor S. Diatchki, Eric Mertens -- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: portable ----- A Haskell binding the libcurl library (http:\/\/curl.haxx.se\/), a +-- A Haskell binding the libcurl library <http://curl.haxx.se/>, a -- proven and feature-rich library for interacting with HTTP(S)\/FTP -- servers. --@@ -20,6 +19,7 @@ -- chance your code will work against older installations of libcurl. -- --------------------------------------------------------------------+ module Network.Curl ( module Network.Curl.Opts , module Network.Curl.Easy
Network/Curl/Code.hs view
@@ -5,7 +5,6 @@ -- Copyright : (c) Galois Inc 2007 -- License : BSD3 ----- Author: Sigbjorn Finne, Iavor S. Diatchki, Eric Mertens -- Maintainer: sof@galois.com -- Stability : provisional -- Portability: portable
Network/Curl/Debug.hs view
@@ -4,7 +4,7 @@ -- Copyright : (c) Galois, Inc. 2008 -- License : BSD3 ----- Maintainer: Don Stewart <dons@galois.com>+-- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: --
Network/Curl/Easy.hs view
@@ -5,12 +5,11 @@ -- Copyright : (c) Galois Inc 2007 -- License : ----- Author: Sigbjorn Finne, Iavor S. Diatchki, Eric Mertens -- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: portable ----- Haskell binding to the libcurl (http:\/\/curl.haxx.se\/) \"easy\" API.+-- Haskell binding to the libcurl <http://curl.haxx.se/> \"easy\" API. -- The \"easy\" API provides a higher-level, easy-to-get-started calling -- interface to the library's wide range of features for interacting -- with HTTP\/FTP\/etc servers.
Network/Curl/Info.hs view
@@ -5,7 +5,6 @@ -- Copyright : (c) Galois Inc 2007 -- License : BSD3 ----- Author: Sigbjorn Finne -- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: portable
Network/Curl/Opts.hs view
@@ -2,9 +2,8 @@ -- | -- Module : Network.Curl.Opts -- Copyright : (c) Galois Inc 2007--- License :+-- License : BSD3 ----- Author: Sigjorn Finne, Iavor S. Diatchki -- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: portable
Network/Curl/Post.hs view
@@ -5,7 +5,6 @@ -- Copyright : (c) Galois Inc 2007 -- License : BSD3 ----- Author: Sigbjorn Finne -- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: portable
Network/Curl/Types.hs view
@@ -5,7 +5,6 @@ -- Copyright : (c) Galois Inc 2007 -- License : BSD3 ----- Author: Sigbjorn Finne, Iavor S. Diatchki, Eric Mertens -- Maintainer: emertens@galois.com -- Stability : provisional -- Portability: portable
curl.cabal view
@@ -1,20 +1,19 @@ name: curl-version: 1.3+version: 1.3.1 synopsis: Haskell binding to libcurl description: libcurl is a client-side URL transfer library, supporting FTP, FTPS, HTTP,- HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. libcurl supports- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,- Kerberos4), file transfer resume, http proxy tunneling and more!- .+ HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE.+ libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading,+ HTTP form based upload, proxies, cookies, user+password authentication+ (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume,+ http proxy tunneling and more! This package provides a Haskell binding to libcurl.- . category: Network license: BSD3 license-file: LICENSE author: Sigbjorn Finne-maintainer: emertens@galois.com+maintainer: emertens@galois.com, diatchki@.galois.com build-depends: base build-type: Configure cabal-version: >= 1.2