exinst-deepseq 0.1 → 0.1.0.1
raw patch · 3 files changed
+10/−5 lines, 3 filesdep ~basedep ~constraintsPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, constraints
API changes (from Hackage documentation)
- Exinst.Instances.DeepSeq: instance Dict1 NFData f1 => NFData (Some1 f1)
- Exinst.Instances.DeepSeq: instance Dict2 NFData f2 => NFData (Some2 f2)
- Exinst.Instances.DeepSeq: instance Dict3 NFData f3 => NFData (Some3 f3)
- Exinst.Instances.DeepSeq: instance Dict4 NFData f4 => NFData (Some4 f4)
+ Exinst.Instances.DeepSeq: instance forall k1 (f1 :: k1 -> GHC.Types.*). Exinst.Singletons.Dict1 Control.DeepSeq.NFData f1 => Control.DeepSeq.NFData (Exinst.Singletons.Some1 f1)
+ Exinst.Instances.DeepSeq: instance forall k2 k1 (f2 :: k2 -> k1 -> GHC.Types.*). Exinst.Singletons.Dict2 Control.DeepSeq.NFData f2 => Control.DeepSeq.NFData (Exinst.Singletons.Some2 f2)
+ Exinst.Instances.DeepSeq: instance forall k3 k2 k1 (f3 :: k3 -> k2 -> k1 -> GHC.Types.*). Exinst.Singletons.Dict3 Control.DeepSeq.NFData f3 => Control.DeepSeq.NFData (Exinst.Singletons.Some3 f3)
+ Exinst.Instances.DeepSeq: instance forall k4 k3 k2 k1 (f4 :: k4 -> k3 -> k2 -> k1 -> GHC.Types.*). Exinst.Singletons.Dict4 Control.DeepSeq.NFData f4 => Control.DeepSeq.NFData (Exinst.Singletons.Some4 f4)
Files
- CHANGELOG.md +5/−0
- LICENSE.txt +1/−1
- exinst-deepseq.cabal +4/−4
CHANGELOG.md view
@@ -1,3 +1,8 @@+# Version 0.1.0.1++* Relax upper bound on `base`, `singletons`, `constraints`.++ # Version 0.1 * Initial release.
LICENSE.txt view
@@ -1,4 +1,4 @@-Copyright (c) 2015, Renzo Carbonara+Copyright (c) 2015-2016, Renzo Carbonara All rights reserved.
exinst-deepseq.cabal view
@@ -1,8 +1,8 @@ name: exinst-deepseq-version: 0.1+version: 0.1.0.1 author: Renzo Carbonara maintainer: renzoλcarbonara.com.ar-copyright: Renzo Carbonara 2015+copyright: Renzo Carbonara 2015-2016 license: BSD3 license-file: LICENSE.txt extra-source-files: README.md CHANGELOG.md@@ -19,9 +19,9 @@ exposed-modules: Exinst.Instances.DeepSeq build-depends:- base >=4.7 && <4.9+ base >=4.7 && <5.0 , deepseq >=1.4 && <1.5- , constraints >=0.4 && <0.5+ , constraints >=0.4 && <0.9 , exinst >=0.1 && <0.2 ghcjs-options: -Wall -O3 ghc-options: -Wall -O2