packages feed

graphviz 2999.20.2.0 → 2999.20.2.1

raw patch · 3 files changed

+13/−14 lines, 3 filesdep ~QuickCheckPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: QuickCheck

API changes (from Hackage documentation)

- Data.GraphViz.Parsing: class Commitment (p :: Type -> TYPE LiftedRep)
+ Data.GraphViz.Parsing: class () => Commitment (p :: Type -> Type)
- Data.GraphViz.Parsing: data Result z a
+ Data.GraphViz.Parsing: data () => Result z a
- Data.GraphViz.Parsing: infixl 3 `apply`
+ Data.GraphViz.Parsing: infixl 3 `discard`
- Data.GraphViz.Parsing: newtype Const a (b :: k)
+ Data.GraphViz.Parsing: newtype () => Const a (b :: k)
- Data.GraphViz.Parsing: newtype Parser s a
+ Data.GraphViz.Parsing: newtype () => Parser s a
- Data.GraphViz.Parsing: newtype WrappedArrow (a :: Type -> Type -> Type) b c
+ Data.GraphViz.Parsing: newtype () => WrappedArrow (a :: Type -> Type -> Type) b c
- Data.GraphViz.Parsing: newtype WrappedMonad (m :: Type -> Type) a
+ Data.GraphViz.Parsing: newtype () => WrappedMonad (m :: Type -> Type) a
- Data.GraphViz.Parsing: newtype ZipList a
+ Data.GraphViz.Parsing: newtype () => ZipList a
- Data.GraphViz.Printing: data Doc
+ Data.GraphViz.Printing: data () => Doc
- Data.GraphViz.Printing: infixr 5 </>
+ Data.GraphViz.Printing: infixr 5 <$$>

Files

Changelog.md view
@@ -8,6 +8,12 @@ Changes in 2999.20.2.0 ---------------------- +* Metadata update.+* Relax QuickCheck upper boundary.++Changes in 2999.20.2.0+----------------------+ * Add `PrintDot` instances for `Word32` and `Word64`. * Dependency bumps. 
README.md view
@@ -51,6 +51,3 @@ \(C\) 2008 - onwards [Ivan Lazar Miljenovic](http://ivanmiljenovic.wordpress.com/)  [3-Clause BSD License]: http://www.opensource.org/licenses/bsd-license.php--For more information, feel free to-[email](mailto:Ivan.Miljenovic+graphviz@gmail.com) me.
graphviz.cabal view
@@ -1,6 +1,5 @@ Name:               graphviz-Version:            2999.20.2.0-Stability:          Beta+Version:            2999.20.2.1 Synopsis:           Bindings to Graphviz for graph visualisation. Description: { This library provides bindings for the Dot language used by the@@ -30,20 +29,17 @@   augment node and edge labels with positional information, etc. } -Homepage:           https://gitlab.com/daniel-casanueva/haskell/graphviz Category:           Graphs, Graphics License:            BSD3 License-File:       LICENSE.md Copyright:          Matthew Sackman, Ivan Lazar Miljenovic Author:             Matthew Sackman, Ivan Lazar Miljenovic-Maintainer:         Daniel Casanueva (daniel.casanueva `at` proton.me)+Maintainer:         Daniel Casanueva (coding `at` danielcasanueva.eu) Build-Type:         Simple-Cabal-Version:      1.14-Extra-Source-Files: TODO.md-                    Changelog.md-                    README.md-                    FAQ.md-                    utils/AttributeGenerator.hs+Cabal-Version:      1.18+Extra-Doc-Files:    TODO.md, Changelog.md, README.md, FAQ.md+Extra-Source-Files: utils/AttributeGenerator.hs+Bug-Reports:        https://codeberg.org/daniel-casanueva/graphviz/issues  Flag test-parsing      Description: Build a utility to test parsing of available Dot code.@@ -118,7 +114,7 @@                            filepath,                            hspec >= 2.1 && < 3,                            text,-                           QuickCheck >= 2.3 && < 2.15+                           QuickCheck >= 2.3 && < 2.16         Build-Tool-Depends: hspec-discover:hspec-discover == 2.*          hs-Source-Dirs:    tests