packages feed

naqsha 0.2.0.0 → 0.2.0.1

raw patch · 5 files changed

+13/−3 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Change log for [naqsha] +## [0.2.0.1] - 24 July, 2017++- minor tweaks to make it build with older ghc (i.e. pre-"Monoids and Applicatives in Prelude)+ ## [0.2.0.0] - 22 July, 2017  * Overall change in module structure.
Naqsha/Geometry/Internal.hs view
@@ -14,12 +14,15 @@   , Latitude(..), Longitude(..), lat, lon   ) where +-- Ugly hack to prevent pre-7.10 ghc warnings++import           Control.Applicative         ( (<$>) ) import           Control.Monad               ( liftM ) import           Data.Bits                   ( Bits  ) import           Data.Fixed import           Data.Group-import           Data.Int import           Data.Monoid+import           Data.Int import           GHC.Real import           Data.Vector.Unboxed         ( MVector(..), Vector, Unbox) import qualified Data.Vector.Generic         as GV
naqsha.cabal view
@@ -1,5 +1,5 @@ name:        naqsha-version:     0.2.0.0+version:     0.2.0.1 synopsis:    A library for working with geospatial data types.  description: Naqsha is a library to work with geospatial data types like latitudes and longitudes. It provides
tests/Naqsha/Arbitrary.hs view
@@ -8,7 +8,8 @@  module Naqsha.Arbitrary where -import           Test.QuickCheck+import Control.Applicative ( (<$>), (<*>) )+import Test.QuickCheck   import Naqsha.Geometry
tests/Naqsha/Geometry/CoordinateSpec.hs view
@@ -1,5 +1,7 @@ {-# LANGUAGE ScopedTypeVariables #-} module Naqsha.Geometry.CoordinateSpec where++import Control.Applicative ( (<$>), (<*>) ) import Data.Monoid import Data.Fixed import Test.QuickCheck