packages feed

Hipmunk 5.2.0.14 → 5.2.0.15

raw patch · 2 files changed

+6/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Hipmunk.cabal view
@@ -3,7 +3,7 @@ Tested-With:   GHC Category:      Physics, Game Name:          Hipmunk-Version:       5.2.0.14+Version:       5.2.0.15 Stability:     provisional License:       OtherLicense License-File:  LICENSE@@ -19,6 +19,10 @@       all of its functions. It is completely self-contained.       Please see <http://hackage.haskell.org/package/HipmunkPlayground>       for a demonstration of this library.+      .+      Version 5.2.0.15:+      .+      * Fix for working with GHC 7.6 again.       .       Version 5.2.0.14:       .
Physics/Hipmunk/Space.hsc view
@@ -62,7 +62,7 @@ import Data.IORef import Data.StateVar import Foreign hiding (new)-#if MIN_VERSION_base(4,4,0)+#if MIN_VERSION_base(4,7,0) import Foreign.ForeignPtr.Unsafe (unsafeForeignPtrToPtr) #endif import Foreign.C.Types (CInt(..))@@ -425,4 +425,3 @@ -- IMPORTANT! This call can (and probably will) callback into Haskell. foreign import ccall {- !!! -} safe {- !!! -}     cpSpaceStep :: SpacePtr -> Time -> IO ()-