sayable 1.0.1.0 → 1.0.2.0
raw patch · 3 files changed
+10/−3 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +5/−0
- Text/Sayable.hs +1/−0
- sayable.cabal +4/−3
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for sayable +## 1.0.2.0 -- 2022-12-23++* Specific GHC support range for GHC 8.8--9.4+* Small cabal file adjustments.+ ## 1.0.1.0 -- 2022-12-01 * Added Sayable instance for Char.
Text/Sayable.hs view
@@ -346,6 +346,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-orphans #-} module Text.Sayable
sayable.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: sayable-version: 1.0.1.0+version: 1.0.2.0 synopsis: Data structures, classes and operators for constructing context-adjusted pretty output description: .@@ -20,7 +20,8 @@ copyright: Galois Inc., 2022 category: Text build-type: Simple-extra-source-files: CHANGELOG.md+extra-doc-files: CHANGELOG.md+tested-with: GHC == 9.4.2, GHC == 9.2.4, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4 source-repository head type: git@@ -42,7 +43,7 @@ hs-source-dirs: . default-language: Haskell2010 exposed-modules: Text.Sayable- build-depends: base >= 4.10 && < 4.15+ build-depends: base >= 4.13 && < 4.18 , exceptions , bytestring , text