deepseq-generics 0.1.1.0 → 0.1.1.1
raw patch · 2 files changed
+20/−15 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- changelog +4/−0
- deepseq-generics.cabal +16/−15
changelog view
@@ -1,5 +1,9 @@ -*-change-log-*- +0.1.1.1 Herbert Valerio Riedel <hvr@gnu.org> November 2013++ * Add support for GHC 7.8+ 0.1.1.0 Herbert Valerio Riedel <hvr@gnu.org> September 2013 * Control/DeepSeq/Generics.hs (genericRnfV1): New Function
deepseq-generics.cabal view
@@ -1,10 +1,8 @@--- Initial deepseq-generics.cabal generated by cabal init. For further--- documentation, see http://haskell.org/cabal/users-guide/- name: deepseq-generics-version: 0.1.1.0+version: 0.1.1.1 synopsis: GHC.Generics-based Control.DeepSeq.rnf implementation homepage: https://github.com/hvr/deepseq-generics+bug-reports: https://github.com/hvr/deepseq-generics/issues license: BSD3 license-file: LICENSE author: Herbert Valerio Riedel@@ -13,7 +11,7 @@ category: Control build-type: Simple cabal-version: >=1.10-tested-with: GHC >=7.4.1+tested-with: GHC==7.6.3, GHC==7.6.2, GHC==7.6.1, GHC==7.4.2, GHC==7.4.1 description: This package provides a "GHC.Generics"-based 'Control.DeepSeq.Generics.genericRnf' function which can be used@@ -35,20 +33,25 @@ type: git location: https://github.com/hvr/deepseq-generics.git +source-repository this+ type: git+ location: https://github.com/hvr/deepseq-generics.git+ tag: 0.1.1.1+ library default-language: Haskell2010 exposed-modules: Control.DeepSeq.Generics- build-depends: base >= 4.5 && < 4.7, ghc-prim >= 0.2 && < 0.4, deepseq >= 1.2.0.1 && < 1.4- other-extensions: BangPatterns, TypeOperators, FlexibleContexts- ghc-options: -Wall+ build-depends: base >= 4.5 && < 4.8, ghc-prim >= 0.2 && < 0.4, deepseq >= 1.2.0.1 && < 1.4+ other-extensions: BangPatterns, FlexibleContexts, TypeOperators+ ghc-options: -Wall test-suite deepseq-generics-tests default-language: Haskell2010- type: exitcode-stdio-1.0- main-is: Suite.hs- hs-source-dirs: test- other-extensions: CPP, TupleSections, DeriveDataTypeable- ghc-options: -Wall+ type: exitcode-stdio-1.0+ hs-source-dirs: test+ main-is: Suite.hs+ other-extensions: CPP, DeriveDataTypeable, DeriveGeneric, TupleSections+ ghc-options: -Wall build-depends: base,@@ -59,5 +62,3 @@ test-framework, test-framework-hunit, HUnit--