derive-storable 0.1.0.2 → 0.1.0.3
raw patch · 3 files changed
+10/−5 lines, 3 filesdep +derive-storabledep −generic-storablePVP ok
version bump matches the API change (PVP)
Dependencies added: derive-storable
Dependencies removed: generic-storable
API changes (from Hackage documentation)
Files
- ChangeLog.md +5/−0
- README.md +1/−1
- derive-storable.cabal +4/−4
ChangeLog.md view
@@ -1,5 +1,10 @@ # Revision history for generic-storable-plugin +## 0.1.0.3 -- 2016-09-19++* Fixed cabal file (no dependencies on generic-storable, just on derive-storable)+* Changed the link in README to hackage repository.+ ## 0.1.0.2 -- 2016-09-11 * Changed generic-storable to derive-storable in README.md
README.md view
@@ -6,7 +6,7 @@ * all fields of the constructor need to be GStorable. * implement a Generic instance (`derive (Generic)`) -In order to achieve the same performance as for hand-written instances, take a look at [derive-storable-plugin](https://www.github.com/mkloczko/derive-storable-plugin).+In order to achieve the same performance as for hand-written instances, take a look at [derive-storable-plugin](https://hackage.haskell.org/package/derive-storable-plugin). # Usage
derive-storable.cabal view
@@ -1,6 +1,6 @@ name: derive-storable -version: 0.1.0.2+version: 0.1.0.3 synopsis: Derive Storable instances with help of GHC.Generics. description: The package allows for automatic derivation of Storable instances @@ -14,7 +14,7 @@ author: Mateusz Kloczko maintainer: mateusz.p.kloczko@gmail.com-category: FFI+category: Foreign build-type: Simple @@ -37,7 +37,7 @@ hs-source-dirs: src, test/Basic, test/Basic/cbits c-sources: test/Basic/cbits/TestCases.c main-is: MemoryCSpec.hs- build-depends: base >= 4.8 && <4.10, hspec == 2.2.* ,QuickCheck == 2.8.*, generic-storable+ build-depends: base >= 4.8 && <4.10, hspec == 2.2.* ,QuickCheck == 2.8.*, derive-storable default-language: Haskell2010 @@ -45,6 +45,6 @@ type: exitcode-stdio-1.0 hs-source-dirs: src/ test/Spec test/Basic test/GenericRep/ Main-is: Spec.hs- build-depends: base >= 4.8 && < 4.10, generic-storable, hspec == 2.2.*, QuickCheck == 2.8.*+ build-depends: base >= 4.8 && < 4.10, derive-storable, hspec == 2.2.*, QuickCheck == 2.8.* default-language: Haskell2010