SVGPath 1.0.1 → 1.0.2
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~parsecPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: parsec
API changes (from Hackage documentation)
Files
- SVGPath.cabal +5/−5
- src/Graphics/SVG/ReadPath.hs +1/−1
SVGPath.cabal view
@@ -1,7 +1,7 @@ Name: SVGPath -Version: 1.0.1 +Version: 1.0.2 Synopsis: Parsing the path command from SVG -Description: Parsing the path command from SVG+Description: Parsing the path command from SVG category: Graphics License: BSD3 License-file: LICENSE @@ -9,11 +9,11 @@ Maintainer: Tillmann.Vogt@rwth-aachen.de Build-Type: Simple Cabal-Version: >=1.6 --Library+ +Library hs-source-dirs: src build-depends: base == 4.*, - parsec == 2.1.* + parsec == 3.1.* exposed-modules: Graphics.SVG.ReadPath
src/Graphics/SVG/ReadPath.hs view
@@ -59,7 +59,7 @@ A_rel deriving Show --- | convert a SVG path string into alist of commands +-- | convert a SVG path string into a list of commands pathFromString :: String -> IO [PathCommand] pathFromString str = do{ case (parse path "" str) of