curlhs 0.1.4 → 0.1.5
raw patch · 3 files changed
+4/−4 lines, 3 filesdep ~hspecPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hspec
API changes (from Hackage documentation)
Files
- curlhs.cabal +2/−2
- test/Network/CURL720Spec.hs +1/−1
- test/Network/CURL730Spec.hs +1/−1
curlhs.cabal view
@@ -1,5 +1,5 @@ name: curlhs-version: 0.1.4+version: 0.1.5 synopsis: bindings to libcurl, the multiprotocol file transfer library homepage: https://github.com/kkardzis/curlhs category: Network@@ -94,7 +94,7 @@ ------------------------------------------------------------------------------- test-suite hspec type: exitcode-stdio-1.0- build-depends: base==4.*, hspec==1.*, curlhs+ build-depends: base==4.*, hspec==2.*, curlhs ghc-options: -Wall -fwarn-tabs main-is: Spec.hs hs-source-dirs: test
test/Network/CURL720Spec.hs view
@@ -24,7 +24,7 @@ spec :: Spec spec = runIO (testlib CURL720) >>= \x -> case x of Left xs -> it "cannot test this module" (pendingWith xs)- Right () -> before (loadlib CURL720) $ after (freelib CURL720) $ do+ Right () -> before_ (loadlib CURL720) $ after_ (freelib CURL720) $ do ---------------------------- describe "curl_version" $ do
test/Network/CURL730Spec.hs view
@@ -24,7 +24,7 @@ spec :: Spec spec = runIO (testlib CURL730) >>= \x -> case x of Left xs -> it "cannot test this module" (pendingWith xs)- Right () -> before (loadlib CURL730) $ after (freelib CURL730) $ do+ Right () -> before_ (loadlib CURL730) $ after_ (freelib CURL730) $ do ---------------------------- describe "curl_version" $ do