packages feed

incipit 0.8.0.0 → 0.9.0.0

raw patch · 1 files changed

+8/−35 lines, 1 filesdep ~polysemy-concdep ~polysemy-logdep ~polysemy-resumePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: polysemy-conc, polysemy-log, polysemy-resume

API changes (from Hackage documentation)

- Incipit.Full: class TimeUnit u
+ Incipit.Full: class () => TimeUnit u
- Incipit.Full: data DataLog a (b :: Type -> Type) c
+ Incipit.Full: data () => DataLog a (b :: Type -> Type) c
- Incipit.Full: data Events e (a :: Type -> Type) b
+ Incipit.Full: data () => Events e (a :: Type -> Type) b
- Incipit.Full: data Interrupt (a :: Type -> Type) b
+ Incipit.Full: data () => Interrupt (a :: Type -> Type) b
- Incipit.Full: data Log (a :: Type -> Type) b
+ Incipit.Full: data () => Log (a :: Type -> Type) b
- Incipit.Full: data Queue d (a :: Type -> Type) b
+ Incipit.Full: data () => Queue d (a :: Type -> Type) b
- Incipit.Full: data QueueResult d
+ Incipit.Full: data () => QueueResult d
- Incipit.Full: data Race (a :: Type -> Type) b
+ Incipit.Full: data () => Race (a :: Type -> Type) b
- Incipit.Full: data Sync d (a :: Type -> Type) b
+ Incipit.Full: data () => Sync d (a :: Type -> Type) b
- Incipit.Full: data Time time date (a :: Type -> Type) b
+ Incipit.Full: data () => Time time date (a :: Type -> Type) b

Files

incipit.cabal view
@@ -1,11 +1,11 @@ cabal-version: 2.2 --- This file has been generated from package.yaml by hpack version 0.35.0.+-- This file has been generated from package.yaml by hpack version 0.35.2. -- -- see: https://github.com/sol/hpack  name:           incipit-version:        0.8.0.0+version:        0.9.0.0 synopsis:       A Prelude for Polysemy description:    See https://hackage.haskell.org/package/incipit/docs/Incipit.html category:       Prelude@@ -108,41 +108,14 @@       UndecidableInstances       UnicodeSyntax       ViewPatterns-      BangPatterns-      BinaryLiterals-      ConstraintKinds-      DeriveDataTypeable-      DeriveFoldable-      DeriveFunctor-      DeriveGeneric-      DeriveLift-      DeriveTraversable-      DoAndIfThenElse-      EmptyCase-      EmptyDataDecls-      ExistentialQuantification-      FlexibleContexts-      FlexibleInstances-      GeneralizedNewtypeDeriving-      InstanceSigs-      KindSignatures-      MultiParamTypeClasses-      NamedFieldPuns-      PatternGuards-      PolyKinds-      RankNTypes-      ScopedTypeVariables-      StandaloneDeriving-      TupleSections-      TypeApplications-      TypeOperators-      TypeSynonymInstances+      OverloadedRecordDot+      NoFieldSelectors   ghc-options: -Wall -Widentities -Wincomplete-uni-patterns -Wmissing-deriving-strategies -Wredundant-constraints -Wunused-type-patterns -Wunused-packages   build-depends:       base >=4.13 && <4.19     , incipit-core ==0.5.*-    , polysemy-conc ==0.12.*-    , polysemy-log ==0.9.*-    , polysemy-resume ==0.7.*+    , polysemy-conc >=0.12 && <0.14+    , polysemy-log >=0.9 && <0.11+    , polysemy-resume >=0.7 && <0.9     , polysemy-time ==0.6.*-  default-language: Haskell2010+  default-language: GHC2021