named 0.3.0.0 → 0.3.0.1
raw patch · 2 files changed
+11/−5 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- named.cabal +7/−5
ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.3.0.1++* Bumped upper bounds for GHC 8.8.+ ## 0.3.0.0 * Added 'param', 'paramF'.
named.cabal view
@@ -1,5 +1,5 @@ name: named-version: 0.3.0.0+version: 0.3.0.1 synopsis: Named parameters (keyword arguments) for Haskell description: `named` is a lightweight library for named function parameters (keyword@@ -31,11 +31,13 @@ license: BSD3 license-file: LICENSE author: Vladislav Zavialov-maintainer: Monadfix <hi@monadfix.io>+maintainer: Monadfix <hi@monadfix.com>+homepage: https://github.com/monadfix/named+bug-reports: https://github.com/monadfix/named/issues category: Control build-type: Simple extra-source-files: ChangeLog.md-tested-with: GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.4+tested-with: GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.5, GHC ==8.8.1 cabal-version: >=1.10 source-repository head@@ -44,7 +46,7 @@ library exposed-modules: Named, Named.Internal- build-depends: base >=4.9 && <4.13+ build-depends: base >=4.9 && <4.14 hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall@@ -54,7 +56,7 @@ type: exitcode-stdio-1.0 main-is: Test.hs other-modules: TestImport- build-depends: base >=4.9 && <4.13,+ build-depends: base >=4.9 && <4.14, named hs-source-dirs: test default-language: Haskell2010