packages feed

gloss-algorithms 1.10.1.1 → 1.10.2.1

raw patch · 2 files changed

+4/−4 lines, 2 filesdep ~basedep ~ghc-primPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, ghc-prim

API changes (from Hackage documentation)

- Graphics.Gloss.Algorithms.RayCast: castSegIntoCellularQuadTree :: Point -> Point -> Extent -> QuadTree a -> Maybe (Point, Extent, a)
+ Graphics.Gloss.Algorithms.RayCast: castSegIntoCellularQuadTree :: forall a. Point -> Point -> Extent -> QuadTree a -> Maybe (Point, Extent, a)
- Graphics.Gloss.Algorithms.RayCast: traceSegIntoCellularQuadTree :: Point -> Point -> Extent -> QuadTree a -> [(Point, Extent, a)]
+ Graphics.Gloss.Algorithms.RayCast: traceSegIntoCellularQuadTree :: forall a. Point -> Point -> Extent -> QuadTree a -> [(Point, Extent, a)]
- Graphics.Gloss.Data.QuadTree: flattenQuadTree :: Extent -> QuadTree a -> [(Coord, a)]
+ Graphics.Gloss.Data.QuadTree: flattenQuadTree :: forall a. Extent -> QuadTree a -> [(Coord, a)]
- Graphics.Gloss.Data.QuadTree: flattenQuadTreeWithExtents :: Extent -> QuadTree a -> [(Extent, a)]
+ Graphics.Gloss.Data.QuadTree: flattenQuadTreeWithExtents :: forall a. Extent -> QuadTree a -> [(Extent, a)]
- Graphics.Gloss.Data.QuadTree: lookupByCoord :: Extent -> Coord -> QuadTree a -> Maybe a
+ Graphics.Gloss.Data.QuadTree: lookupByCoord :: forall a. Extent -> Coord -> QuadTree a -> Maybe a

Files

LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2010-2014 Benjamin Lippmeier +Copyright (c) 2010-2016 The Gloss Development Team   Permission is hereby granted, free of charge, to any person  obtaining a copy of this software and associated documentation
gloss-algorithms.cabal view
@@ -1,5 +1,5 @@ Name:                gloss-algorithms-Version:             1.10.1.1+Version:             1.10.2.1 License:             MIT License-file:        LICENSE Author:              Ben Lippmeier@@ -22,8 +22,8 @@  Library   Build-Depends: -        base       == 4.8.*,-        ghc-prim   == 0.4.*,+        base       == 4.9.*,+        ghc-prim   == 0.5.*,         containers == 0.5.*,         gloss      == 1.10.*