packages feed

QuadTree 0.10.0 → 0.10.1

raw patch · 2 files changed

+12/−9 lines, 2 filesdep ~basedep ~lensPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, lens

API changes (from Hackage documentation)

Files

Data/QuadTree.hs view
@@ -7,12 +7,11 @@  {-| Module      : QuadTree-Description : Region quadtrees with Lens support.+Description : Region quadtrees with lens support. Copyright   : (c) Ashley Moni, 2014 License     : GPL-3-Maintainer  : Ashley Moni <y30099923@gmail.com>-Stability   : Experimental-Portability : Rank 2 Types, Scoped Type Variables+Maintainer  : Ashley Moni <ashley.moni1@gmail.com>+Stability   : Stable  The purpose of this module is to provide discrete region quadtrees that can be used as simple functional alternatives to 2D arrays,
QuadTree.cabal view
@@ -10,7 +10,7 @@ -- PVP summary:      +-+------- breaking API changes --                   | | +----- non-breaking API additions --                   | | | +--- code changes with no API change-version:             0.10.0+version:             0.10.1  -- A short (one-line) description of the package. synopsis:            QuadTree library for Haskell, with lens support.@@ -30,17 +30,17 @@  -- An email address to which users can send suggestions, bug reports, and -- patches.-maintainer:          y30099923@gmail.com+maintainer:          ashley.moni1@gmail.com  -- A copyright notice. -- copyright: -category:            Data+category:            Data, Game  build-type:          Simple  -- Constraint on the version of Cabal needed to build this package.-cabal-version:       >=1.8+cabal-version:       >= 1.10   library@@ -51,8 +51,12 @@   -- other-modules:    -- Other library packages from which modules are imported.-  build-depends:       base ==4.6.*, lens ==4.0.*, composition ==1.0.*+  build-depends:       base >= 4.6 && <= 4.8,+                       lens >= 4.1 && <= 4.5,+                       composition ==1.0.* +  -- http://www.vex.net/~trebla/haskell/cabal-cabal.xhtml+  default-language:    Haskell2010  source-repository head   type: git