packages feed

force-layout 0.4.0.4 → 0.4.0.5

raw patch · 2 files changed

+7/−2 lines, 2 filesdep ~data-default-classPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: data-default-class

API changes (from Hackage documentation)

- Physics.ForceLayout: damping :: forall n_aklI. Lens' (ForceLayoutOpts n_aklI) n_aklI
+ Physics.ForceLayout: damping :: forall n_aidq. Lens' (ForceLayoutOpts n_aidq) n_aidq
- Physics.ForceLayout: energyLimit :: forall n_aklI. Lens' (ForceLayoutOpts n_aklI) (Maybe n_aklI)
+ Physics.ForceLayout: energyLimit :: forall n_aidq. Lens' (ForceLayoutOpts n_aidq) (Maybe n_aidq)
- Physics.ForceLayout: force :: forall v_aiuX n_aiuY. Lens' (Particle v_aiuX n_aiuY) (v_aiuX n_aiuY)
+ Physics.ForceLayout: force :: forall v_afY6 n_afY7. Lens' (Particle v_afY6 n_afY7) (v_afY6 n_afY7)
- Physics.ForceLayout: forces :: forall v_akgf n_akgg. Lens' (Ensemble v_akgf n_akgg) [([Edge], Point v_akgf n_akgg -> Point v_akgf n_akgg -> v_akgf n_akgg)]
+ Physics.ForceLayout: forces :: forall v_ai2p n_ai2q. Lens' (Ensemble v_ai2p n_ai2q) [([Edge], Point v_ai2p n_ai2q -> Point v_ai2p n_ai2q -> v_ai2p n_ai2q)]
- Physics.ForceLayout: particles :: forall v_akgf n_akgg. Lens' (Ensemble v_akgf n_akgg) (Map PID (Particle v_akgf n_akgg))
+ Physics.ForceLayout: particles :: forall v_ai2p n_ai2q. Lens' (Ensemble v_ai2p n_ai2q) (Map PID (Particle v_ai2p n_ai2q))
- Physics.ForceLayout: pos :: forall v_aiuX n_aiuY. Lens' (Particle v_aiuX n_aiuY) (Point v_aiuX n_aiuY)
+ Physics.ForceLayout: pos :: forall v_afY6 n_afY7. Lens' (Particle v_afY6 n_afY7) (Point v_afY6 n_afY7)
- Physics.ForceLayout: stepLimit :: forall n_aklI. Lens' (ForceLayoutOpts n_aklI) (Maybe Int)
+ Physics.ForceLayout: stepLimit :: forall n_aidq. Lens' (ForceLayoutOpts n_aidq) (Maybe Int)
- Physics.ForceLayout: vel :: forall v_aiuX n_aiuY. Lens' (Particle v_aiuX n_aiuY) (v_aiuX n_aiuY)
+ Physics.ForceLayout: vel :: forall v_afY6 n_afY7. Lens' (Particle v_afY6 n_afY7) (v_afY6 n_afY7)

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+## [v0.4.0.5](https://github.com/diagrams/force-layout/tree/v0.4.0.5) (2016-06-02)++- allow `data-default-class-0.1`+- test with GHC 8.0.1+ ## [v0.4.0.4](https://github.com/diagrams/force-layout/tree/v0.4.0.4) (2016-05-01)  - allow `lens-4.14`
force-layout.cabal view
@@ -1,5 +1,5 @@ name:                force-layout-version:             0.4.0.4+version:             0.4.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@@ -25,6 +25,6 @@                        linear >= 1.10 && < 1.21,                        lens >= 3.0 && < 4.15,                        containers >=0.4 && < 0.6,-                       data-default-class >= 0.0.1 && < 0.1+                       data-default-class >= 0.0.1 && < 0.2   hs-source-dirs:      src   default-language:    Haskell2010