packages feed

records-sop 0.1.0.0 → 0.1.0.1

raw patch · 4 files changed

+9/−7 lines, 4 filesdep ~hspecsetup-changedPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: hspec

API changes (from Hackage documentation)

- Generics.SOP.Record: instance forall a (l :: a) a1. GHC.Classes.Eq a1 => GHC.Classes.Eq (Generics.SOP.Record.P '(l, a1))
- Generics.SOP.Record: instance forall a (l :: a) a1. GHC.Classes.Ord a1 => GHC.Classes.Ord (Generics.SOP.Record.P '(l, a1))
- Generics.SOP.Record: instance forall a (p :: (a, GHC.Types.Type)). GHC.Generics.Generic (Generics.SOP.Record.P p)
- Generics.SOP.Record: instance forall a a1 (l :: a). Control.DeepSeq.NFData a1 => Control.DeepSeq.NFData (Generics.SOP.Record.P '(l, a1))
- Generics.SOP.Record: instance forall a a1 (l :: a). GHC.Show.Show a1 => GHC.Show.Show (Generics.SOP.Record.P '(l, a1))
- Generics.SOP.Record.SubTyping: instance a1 ~ a2 => Generics.SOP.Record.SubTyping.IsElemOf' 'GHC.Types.True s a1 s a2 r
+ Generics.SOP.Record: instance forall a (p :: (a, *)). GHC.Generics.Generic (Generics.SOP.Record.P p)
+ Generics.SOP.Record: instance forall a1 a2 (l :: a1). Control.DeepSeq.NFData a2 => Control.DeepSeq.NFData (Generics.SOP.Record.P '(l, a2))
+ Generics.SOP.Record: instance forall a1 a2 (l :: a1). GHC.Classes.Eq a2 => GHC.Classes.Eq (Generics.SOP.Record.P '(l, a2))
+ Generics.SOP.Record: instance forall a1 a2 (l :: a1). GHC.Classes.Ord a2 => GHC.Classes.Ord (Generics.SOP.Record.P '(l, a2))
+ Generics.SOP.Record: instance forall a1 a2 (l :: a1). GHC.Show.Show a2 => GHC.Show.Show (Generics.SOP.Record.P '(l, a2))
+ Generics.SOP.Record.SubTyping: instance (a1 ~ a2) => Generics.SOP.Record.SubTyping.IsElemOf' 'GHC.Types.True s a1 s a2 r

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+# 0.1.0.1 (2018-09-01)++* Relax version bound for hspec and fix a warning in+  the test suite.+ # 0.1.0.0 (2017-05-01)  * Initial release. Everything is still rather experimental.
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
records-sop.cabal view
@@ -1,12 +1,12 @@ name: records-sop-version: 0.1.0.0+version: 0.1.0.1 author: Andres Löh <andres@well-typed.com> maintainer: andres@well-typed.com license: BSD3 license-file: LICENSE cabal-version: >= 1.10 build-type: Simple-tested-with: GHC == 8.0.1, GHC == 8.0.2, GHC == 8.2.1, GHC == 8.3.*+tested-with: GHC == 8.0.2, GHC == 8.2.1, GHC == 8.4.3, GHC == 8.6.1 category: Generics synopsis: Record subtyping and record utilities with generics-sop description:@@ -32,7 +32,7 @@     Generics.SOP.Record.SubTyping   build-depends:     base >= 4.9 && < 5.0,-    deepseq >= 1.3 && < 1.5,            +    deepseq >= 1.3 && < 1.5,     generics-sop >= 0.3 && < 0.4,     ghc-prim >= 0.5 && < 0.6   default-language:@@ -50,7 +50,7 @@   build-depends:     base >= 4.9 && < 5.0,     deepseq >= 1.4 && < 1.5,-    hspec >= 2.2 && < 2.5,+    hspec >= 2.2 && < 2.6,     generics-sop >= 0.3 && < 0.4,     records-sop,     should-not-typecheck >= 2.1 && < 2.2
tests/Examples.hs view
@@ -11,7 +11,6 @@ import Test.ShouldNotTypecheck  import Generics.SOP-import Generics.SOP.Record import Generics.SOP.Record.SubTyping  data X = MkX {}