geojson 1.3.0 → 1.3.1
raw patch · 3 files changed
+11/−3 lines, 3 filesdep ~aesondep ~lenssetup-changed
Dependency ranges changed: aeson, lens
Files
- Setup.hs +3/−0
- doctests/Main.hs +5/−0
- geojson.cabal +3/−3
Setup.hs view
@@ -1,10 +1,13 @@ #!/usr/bin/env runhaskell+{-# LANGUAGE CPP #-} {-# OPTIONS_GHC -Wall #-} module Main (main) where import Data.List ( nub ) import Data.Version ( showVersion )+#if __GLASGOW_HASKELL__ < 710 import Control.Applicative+#endif import Distribution.Package ( PackageName(PackageName), PackageId, InstalledPackageId, packageVersion, packageName ) import Distribution.PackageDescription ( PackageDescription(), TestSuite(..) ) import Distribution.Simple ( defaultMainWithHooks, UserHooks(..), simpleUserHooks )
doctests/Main.hs view
@@ -1,8 +1,13 @@+{-# LANGUAGE CPP #-} module Main where import Build_doctests (deps, opts) import Control.Monad++#if __GLASGOW_HASKELL__ < 710 import Control.Applicative+#endif+ import Data.List import System.Directory import System.FilePath
geojson.cabal view
@@ -1,5 +1,5 @@ name: geojson-version: 1.3.0+version: 1.3.1 license: BSD3 license-file: etc/LICENCE.md author: Dom De Re@@ -37,8 +37,8 @@ default-language: Haskell2010 build-depends: base < 5 && >= 4- , aeson == 0.9.*- , lens == 4.11.*+ , aeson >= 0.8 && < 1.0+ , lens >= 4.11 && < 4.13 , semigroups == 0.16.* , text == 1.2.* , transformers >= 0.3 && < 0.5