ilist 0.4.0.0 → 0.4.0.1
raw patch · 3 files changed
+18/−9 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +5/−0
- README.md +1/−1
- ilist.cabal +12/−8
CHANGELOG.md view
@@ -3,6 +3,11 @@ `ilist` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.4.0.1 — May 7, 2020++* [#7](https://github.com/kowainik/ilist/issues/7):+ Support GHC-8.10. Move from GHC-8.8.1 support to GHC-8.8.3.+ ## 0.4.0.0 — Dec 26, 2019 * Support GHC-8.8, GHC-8.6, GHC-8.4, GHC-8.2. Drop older GHC versions support.
README.md view
@@ -1,6 +1,6 @@ # ilist -[](http://travis-ci.org/kowainik/ilist)+[](https://github.com/kowainik/ilist/actions) [](https://ci.appveyor.com/project/kowainik/ilist) [](https://hackage.haskell.org/package/ilist) [](http://stackage.org/lts/package/ilist)
ilist.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: ilist-version: 0.4.0.0+version: 0.4.0.1 synopsis: Optimised list functions for doing index-related things description: Optimised list functions for doing index-related things. They're@@ -22,27 +22,31 @@ tested-with: GHC == 8.2.2 GHC == 8.4.4 GHC == 8.6.5- GHC == 8.8.1+ GHC == 8.8.3+ GHC == 8.10.1 source-repository head type: git location: https://github.com/kowainik/ilist.git common common-options- build-depends: base >= 4.10 && < 4.14+ build-depends: base >= 4.10 && < 4.15 ghc-options: -Wall- -Wincomplete-uni-patterns- -Wincomplete-record-updates -Wcompat -Widentities+ -Wincomplete-uni-patterns+ -Wincomplete-record-updates -Wredundant-constraints- -Wpartial-fields -fhide-source-paths- -freverse-errors- if impl(ghc >= 8.8.1)+ if impl(ghc >= 8.4)+ ghc-options: -Wmissing-export-lists+ -Wpartial-fields+ if impl(ghc >= 8.8) ghc-options: -Wmissing-deriving-strategies -Werror=missing-deriving-strategies+ if impl(ghc >= 8.10)+ ghc-options: -Wunused-packages default-language: Haskell2010 default-extensions: DeriveGeneric