packages feed

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 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 -[![Travis](https://img.shields.io/travis/kowainik/ilist.svg?logo=travis)](http://travis-ci.org/kowainik/ilist)+[![GitHub CI](https://github.com/kowainik/ilist/workflows/CI/badge.svg)](https://github.com/kowainik/ilist/actions) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/kowainik/ilist?branch=master&svg=true)](https://ci.appveyor.com/project/kowainik/ilist) [![Hackage](https://img.shields.io/hackage/v/ilist.svg?logo=haskell)](https://hackage.haskell.org/package/ilist) [![Stackage LTS](http://stackage.org/package/ilist/badge/lts)](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