force-layout 0.3.0.4 → 0.3.0.5
raw patch · 3 files changed
+11/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES +6/−1
- force-layout.cabal +4/−3
- src/Physics/ForceLayout.hs +1/−0
CHANGES view
@@ -1,4 +1,9 @@-# 0.3.0.4: 2 June 2014+* 0.3.0.5 (12 June 2014)++ - Add extension to allow building with GHC HEAD (7.9) (thanks to+ Gabor Greif)++* 0.3.0.4: 2 June 2014 - Allow lens-4.2
force-layout.cabal view
@@ -1,5 +1,5 @@ name: force-layout-version: 0.3.0.4+version: 0.3.0.5 synopsis: Simple force-directed layout description: Simulation engine for doing simple force-based layout, /e.g./ for trees or graphs. See the diagrams-contrib package@@ -8,14 +8,15 @@ license-file: LICENSE author: Brent Yorgey maintainer: byorgey@cis.upenn.edu+bug-reports: https://github.com/diagrams/force-layout/issues copyright: (c) 2011 Brent Yorgey category: Graphics build-type: Simple cabal-version: >=1.10 extra-source-files: CHANGES source-repository head- type: darcs- location: http://hub.darcs.net/byorgey/force-layout+ type: git+ location: git://github.com/diagrams/force-layout.git library exposed-modules: Physics.ForceLayout
src/Physics/ForceLayout.hs view
@@ -1,6 +1,7 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE TypeFamilies #-} {-# LANGUAGE UndecidableInstances #-} -----------------------------------------------------------------------------