kdt 0.2.1 → 0.2.2
raw patch · 4 files changed
+11/−4 lines, 4 filesdep ~QuickCheck
Dependency ranges changed: QuickCheck
Files
- app-src/Tests/DynamicTest.hs +2/−0
- app-src/Tests/StaticTest.hs +2/−0
- changelog.md +3/−0
- kdt.cabal +4/−4
app-src/Tests/DynamicTest.hs view
@@ -9,6 +9,8 @@ import Data.Point2d import System.Exit import Test.QuickCheck+-- This import only required for QuickCheck <2.7+import Test.QuickCheck.All testElements :: [p] -> [(p, Int)] testElements ps = zip ps [1 ..]
app-src/Tests/StaticTest.hs view
@@ -8,6 +8,8 @@ import Data.Point2d import System.Exit import Test.QuickCheck+-- This import only required for QuickCheck <2.7+import Test.QuickCheck.All testElements :: [p] -> [(p, Int)] testElements ps = zip ps [0 ..]
changelog.md view
@@ -1,3 +1,6 @@+# 0.2.2+* Relax lower version bound on QuickCheck to 2.5.+ # 0.2.1 * Relax upper version constraint for MonadRandom (benchmarking code) * Add Data.Point2d as dependency of executables so tests and benchmarks can be built from the archive downloaded on Hackage.
kdt.cabal view
@@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: kdt-version: 0.2.1+version: 0.2.2 synopsis: Fast and flexible k-d trees for various types of point queries. description: This package includes static and dynamic versions of k-d trees, as well as \"Map\" variants that store data at each point in the@@ -50,7 +50,7 @@ ghc-options: -Wall -O3 build-depends: base >=4.6 && <4.8, kdt -any,- QuickCheck >=2.7 && <2.8,+ QuickCheck >=2.5 && <2.8, deepseq >=1.3 && <1.4, deepseq-generics >=0.1.1.1 default-language: Haskell2010@@ -63,7 +63,7 @@ ghc-options: -Wall -O3 build-depends: base >=4.6 && <4.8, kdt -any,- QuickCheck >=2.7 && <2.8,+ QuickCheck >=2.5 && <2.8, deepseq >=1.3 && <1.4, deepseq-generics >=0.1.1.1 default-language: Haskell2010@@ -82,7 +82,7 @@ mersenne-random-pure64 >=0.2.0.4 && <0.3, criterion >= 1.0.0.0 && <1.1, pqueue >=1.2.1 && <1.3,- QuickCheck >=2.7 && <2.8,+ QuickCheck >=2.5 && <2.8, deepseq >=1.3 && <1.4, deepseq-generics >=0.1.1.1 default-language: Haskell2010