packages feed

fcf-base 0.1.0.0 → 0.1.0.1

raw patch · 3 files changed

+8/−3 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for fcf-base +## 0.1.0.1 -- 2024-01-24++- Silence warnings about orphans+ ## 0.1.0.0 -- 2023-01-23 -* First version. Released on an unsuspecting world.+- First version. Released on an unsuspecting world.
fcf-base.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               fcf-base-version:            0.1.0.0+version:            0.1.0.1 synopsis: Family-of-families instances for base description: See the package <https://hackage.haskell.org/package/fcf-family fcf-family> for more information. homepage:           https://gitlab.com/lysxia/fcf-family@@ -21,7 +21,7 @@       Fcf.Base     build-depends:       fcf-family,-      base >= 4.15 && < 4.19+      base >= 4.15 && < 4.22     hs-source-dirs:   src     default-language: Haskell2010 
src/Fcf/Base.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE CPP, DataKinds, NoStarIsType, PolyKinds, TemplateHaskell, TypeFamilies #-}+{-# OPTIONS_GHC -Wno-orphans #-}  -- | First-class promotion of type families in /base/. module Fcf.Base () where