ats-storable 0.3.0.4 → 0.3.0.5
raw patch · 3 files changed
+3/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ats-storable.cabal +2/−1
- atspkg.dhall +0/−1
- test/Spec.hs +1/−1
ats-storable.cabal view
@@ -1,11 +1,12 @@ cabal-version: 1.18 name: ats-storable-version: 0.3.0.4+version: 0.3.0.5 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale+bug-reports: https://hub.darcs.net/vmchale/ats-storable/issues synopsis: Marshal ATS types into Haskell description: Facilities for sharing types between ATS and Haskell
atspkg.dhall view
@@ -10,5 +10,4 @@ , static = True } ]- , compiler = [0,3,10] }
test/Spec.hs view
@@ -37,6 +37,6 @@ main = hspec $ parallel $ describe "readPtr" $ do it "should work on a combined sum/product type" $- somethingVal >>= (`shouldBe` (Some (Pair 1 6)))+ somethingVal >>= (`shouldBe` Some (Pair 1 6)) it "should work on a combined sum/product type" $ (pure $ pendingWith "not yet") somethingElseVal -- somethingElseVal >>= (`shouldBe` (First 2))