force-layout 0.4.0.2 → 0.4.0.3
raw patch · 2 files changed
+7/−3 lines, 2 filesdep ~lensdep ~linearPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: lens, linear
API changes (from Hackage documentation)
- Physics.ForceLayout: damping :: Lens' (ForceLayoutOpts n_abWF) n_abWF
+ Physics.ForceLayout: damping :: Lens' (ForceLayoutOpts n_abZ7) n_abZ7
- Physics.ForceLayout: energyLimit :: Lens' (ForceLayoutOpts n_abWF) (Maybe n_abWF)
+ Physics.ForceLayout: energyLimit :: Lens' (ForceLayoutOpts n_abZ7) (Maybe n_abZ7)
- Physics.ForceLayout: force :: Lens' (Particle v_a9IO n_a9IP) (v_a9IO n_a9IP)
+ Physics.ForceLayout: force :: Lens' (Particle v_a9Le n_a9Lf) (v_a9Le n_a9Lf)
- Physics.ForceLayout: forces :: Lens' (Ensemble v_abRj n_abRk) [([Edge], Point v_abRj n_abRk -> Point v_abRj n_abRk -> v_abRj n_abRk)]
+ Physics.ForceLayout: forces :: Lens' (Ensemble v_abTJ n_abTK) [([Edge], Point v_abTJ n_abTK -> Point v_abTJ n_abTK -> v_abTJ n_abTK)]
- Physics.ForceLayout: particles :: Lens' (Ensemble v_abRj n_abRk) (Map PID (Particle v_abRj n_abRk))
+ Physics.ForceLayout: particles :: Lens' (Ensemble v_abTJ n_abTK) (Map PID (Particle v_abTJ n_abTK))
- Physics.ForceLayout: pos :: Lens' (Particle v_a9IO n_a9IP) (Point v_a9IO n_a9IP)
+ Physics.ForceLayout: pos :: Lens' (Particle v_a9Le n_a9Lf) (Point v_a9Le n_a9Lf)
- Physics.ForceLayout: stepLimit :: Lens' (ForceLayoutOpts n_abWF) (Maybe Int)
+ Physics.ForceLayout: stepLimit :: Lens' (ForceLayoutOpts n_abZ7) (Maybe Int)
- Physics.ForceLayout: vel :: Lens' (Particle v_a9IO n_a9IP) (v_a9IO n_a9IP)
+ Physics.ForceLayout: vel :: Lens' (Particle v_a9Le n_a9Lf) (v_a9Le n_a9Lf)
Files
- CHANGELOG.md +4/−0
- force-layout.cabal +3/−3
CHANGELOG.md view
@@ -1,3 +1,7 @@+## [v0.4.0.3](https://github.com/diagrams/force-layout/tree/v0.4.0.3) (2015-09-17)++ - allow `lens-4.13`+ ## [v0.4.0.2](https://github.com/diagrams/force-layout/tree/v0.4.0.2) (2015-07-19) [Full Changelog](https://github.com/diagrams/force-layout/compare/v0.4.0.1...v0.4.0.2)
force-layout.cabal view
@@ -1,5 +1,5 @@ name: force-layout-version: 0.4.0.2+version: 0.4.0.3 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@@ -22,8 +22,8 @@ library exposed-modules: Physics.ForceLayout build-depends: base >= 4.2 && < 4.9,- linear >= 1.10 && < 1.20,- lens >= 3.0 && < 4.13,+ linear >= 1.10 && < 1.21,+ lens >= 3.0 && < 4.14, containers >=0.4 && < 0.6, data-default-class >= 0.0.1 && < 0.1 hs-source-dirs: src