binary-streams 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+18/−4 lines, 2 filesdep ~Cabaldep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: Cabal, base
API changes (from Hackage documentation)
Files
- binary-streams.cabal +13/−4
- dist/build/encode-decodeStub/encode-decodeStub-tmp/encode-decodeStub.hs +5/−0
binary-streams.cabal view
@@ -1,5 +1,5 @@ name: binary-streams-version: 0.1.0.0+version: 0.1.0.1 synopsis: data serialization/deserialization io-streams library description: Allow binary serialization/deserialization using io-streams homepage: http://github.com/jonpetterbergman/binary-streams@@ -13,12 +13,21 @@ build-type: Simple extra-source-files: changelog.md cabal-version: >=1.10+source-repository head+ type: git+ location: http://github.com/jonpetterbergman/binary-streams +source-repository this+ type: git+ location: http://github.com/jonpetterbergman/binary-stream+ tag: v0.1.0.1++ library exposed-modules: System.IO.Streams.Binary -- other-modules: other-extensions: DeriveDataTypeable- build-depends: base >=4.7 && <4.8,+ build-depends: base >=4.7 && <4.9, bytestring >=0.9 && <0.11, binary >=0.6 && <0.8, io-streams >=1.1.0 && <2.0@@ -28,9 +37,9 @@ Test-Suite encode-decode type: detailed-0.9 test-module: EncodeDecode- build-depends: base >=4.7 && <4.8, + build-depends: base >=4.7 && <4.9, bytestring >=0.9 && <0.11,- Cabal >= 1.9.2,+ Cabal >= 1.10, binary >=0.6 && <0.8, io-streams >=1.1.0 && <2.0, binary-streams,
+ dist/build/encode-decodeStub/encode-decodeStub-tmp/encode-decodeStub.hs view
@@ -0,0 +1,5 @@+module Main ( main ) where+import Distribution.Simple.Test.LibV09 ( stubMain )+import EncodeDecode ( tests )+main :: IO ()+main = stubMain tests