force-layout 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+10/−8 lines, 2 filesdep ~basedep ~containersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, containers
API changes (from Hackage documentation)
- Physics.ForceLayout: force :: Arrow ~> => Lens ~> (Particle v) v
+ Physics.ForceLayout: force :: Arrow arr => Lens arr (Particle v) v
- Physics.ForceLayout: forces :: Arrow ~> => Lens ~> (Ensemble v) [([Edge], Point v -> Point v -> v)]
+ Physics.ForceLayout: forces :: Arrow arr => Lens arr (Ensemble v) [([Edge], Point v -> Point v -> v)]
- Physics.ForceLayout: particles :: Arrow ~> => Lens ~> (Ensemble v) (Map PID (Particle v))
+ Physics.ForceLayout: particles :: Arrow arr => Lens arr (Ensemble v) (Map PID (Particle v))
- Physics.ForceLayout: pos :: Arrow ~> => Lens ~> (Particle v) (Point v)
+ Physics.ForceLayout: pos :: Arrow arr => Lens arr (Particle v) (Point v)
- Physics.ForceLayout: vel :: Arrow ~> => Lens ~> (Particle v) v
+ Physics.ForceLayout: vel :: Arrow arr => Lens arr (Particle v) v
Files
- CHANGES +4/−0
- force-layout.cabal +6/−8
CHANGES view
@@ -1,3 +1,7 @@+* 0.1.0.2: 23 August 2012++ - Bump upper bounds to allow base-4.6 and containers-0.5+ * 0.1.0.1: 21 December 2011 - Bump fclabels upper bound to allow 1.1.0
force-layout.cabal view
@@ -1,8 +1,5 @@--- Initial force-layout.cabal generated by cabal init. For further--- documentation, see http://haskell.org/cabal/users-guide/- name: force-layout-version: 0.1.0.1+version: 0.1.0.2 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@@ -14,18 +11,19 @@ copyright: (c) 2011 Brent Yorgey category: Graphics build-type: Simple-cabal-version: >=1.8+cabal-version: >=1.10 extra-source-files: CHANGES source-repository head type: darcs- location: http://patch-tag.com/r/byorgey/force-layout+ location: http://hub.darcs.net/byorgey/force-layout library exposed-modules: Physics.ForceLayout- build-depends: base >= 4.2 && < 4.6,+ build-depends: base >= 4.2 && < 4.7, newtype ==0.2.*, vector-space >=0.7 && <0.9, vector-space-points >= 0.1.1 && < 0.2, fclabels >= 1.0 && < 1.2,- containers ==0.4.*+ containers >=0.4 && < 0.6 hs-source-dirs: src+ default-language: Haskell2010