dotgen 0.3 → 0.4
raw patch · 2 files changed
+6/−4 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Text/Dot.hs +3/−2
- dotgen.cabal +3/−2
Text/Dot.hs view
@@ -168,7 +168,8 @@ ] let fm = M.fromList (nodeTab ++ otherTab) sequence_ [ (fm M.! src) .->. (fm M.! dst)- | (src,b) <- assocs- , dst <- outFn b+ | (dst,b) <- assocs+ , src <- outFn b ] return ()+
dotgen.cabal view
@@ -1,5 +1,5 @@ Name: dotgen-Version: 0.3+Version: 0.4 Synopsis: A simple interface for building .dot graph files. Description: This package provides a simple interface for building .dot graph files, for input into the dot and graphviz tools. @@ -9,7 +9,7 @@ License-file: LICENSE Author: Andy Gill Maintainer: Andy Gill <andygill@ku.edu>-Build-Depends: base, containers+Build-Depends: base >=3 && <5, containers Exposed-Modules: Text.Dot Stability: alpha build-type: Simple@@ -19,4 +19,5 @@ hs-source-dirs: test, . Main-is: DotTest.hs buildable: False+