haphviz 0.1.1.4 → 0.1.1.5
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- haphviz.cabal +1/−1
- src/Text/Dot/Render.hs +3/−1
haphviz.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: haphviz-version: 0.1.1.4+version: 0.1.1.5 synopsis: Graphviz code generation with Haskell description: There are multiple ways to describe this package:
src/Text/Dot/Render.hs view
@@ -33,7 +33,9 @@ -- | Render a graph to graphviz code renderGraph :: DotGraph -> Text renderGraph (Graph gtype name content) = mconcat- [ "digraph"+ [ case gtype of+ DirectedGraph -> "digraph"+ UndirectedGraph -> "graph" , " " , name , " "