derive-storable 0.1.0.1 → 0.1.0.2
raw patch · 3 files changed
+7/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +3/−1
- README.md +2/−2
- derive-storable.cabal +2/−2
ChangeLog.md view
@@ -1,8 +1,10 @@ # Revision history for generic-storable-plugin -## 0.1.0.1 -- 2016-09-11+## 0.1.0.2 -- 2016-09-11 +* Changed generic-storable to derive-storable in README.md * Added README.md to the package+ ## 0.1.0.0 -- 2016-09-08
README.md view
@@ -1,12 +1,12 @@ # Introduction -The `generic-storable` package allows you to automatically generate Storable instances for your datatypes. It uses GHC.Generics, which allows the coders to derive certain instances automatically. To derive a (G)Storable instance, the data-type has to:+The `derive-storable` package allows you to automatically generate Storable instances for your datatypes. It uses GHC.Generics, which allows the coders to derive certain instances automatically. To derive a (G)Storable instance, the data-type has to: * have only one constructor. * 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 [generic-storable-plugin](https://www.github.com/mkloczko/generic-storable-plugin).+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). # Usage
derive-storable.cabal view
@@ -1,12 +1,12 @@ name: derive-storable -version: 0.1.0.1+version: 0.1.0.2 synopsis: Derive Storable instances with help of GHC.Generics. description: The package allows for automatic derivation of Storable instances with C-like memory layout. -homepage: https://www.github.com/mkloczko/derive-storable-plugin/+homepage: https://www.github.com/mkloczko/derive-storable/ license: MIT license-file: LICENSE