packages feed

rasterific-svg 0.2.3.1 → 0.2.3.2

raw patch · 2 files changed

+8/−4 lines, 2 filesdep ~basedep ~optparse-applicativePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, optparse-applicative

API changes (from Hackage documentation)

- Graphics.Rasterific.Svg: _drawAction :: DrawResult -> Drawing PixelRGBA8 ()
- Graphics.Rasterific.Svg: _drawHeight :: DrawResult -> {-# UNPACK #-} !Int
- Graphics.Rasterific.Svg: _drawWidth :: DrawResult -> {-# UNPACK #-} !Int
- Graphics.Rasterific.Svg: _loadedFonts :: LoadedElements -> Map FilePath Font
- Graphics.Rasterific.Svg: _loadedImages :: LoadedElements -> Map FilePath (Image PixelRGBA8)
- Graphics.Rasterific.Svg: instance Eq Result
- Graphics.Rasterific.Svg: instance Show Result
+ Graphics.Rasterific.Svg: [_drawAction] :: DrawResult -> Drawing PixelRGBA8 ()
+ Graphics.Rasterific.Svg: [_drawHeight] :: DrawResult -> {-# UNPACK #-} !Int
+ Graphics.Rasterific.Svg: [_drawWidth] :: DrawResult -> {-# UNPACK #-} !Int
+ Graphics.Rasterific.Svg: [_loadedFonts] :: LoadedElements -> Map FilePath Font
+ Graphics.Rasterific.Svg: [_loadedImages] :: LoadedElements -> Map FilePath (Image PixelRGBA8)
+ Graphics.Rasterific.Svg: instance GHC.Classes.Eq Graphics.Rasterific.Svg.Result
+ Graphics.Rasterific.Svg: instance GHC.Show.Show Graphics.Rasterific.Svg.Result

Files

changelog view
@@ -1,6 +1,10 @@ Change log ========== +v0.2.3.2 October 2015+---------------------+ * Fix: bumping optparse-applicative upper bound+ v0.2.3.1 May 2015 -----------------  * Fix: Bumping Rasterific version to compiler
rasterific-svg.cabal view
@@ -1,7 +1,7 @@ -- Initial svg.cabal generated by cabal init.  For further documentation,  -- see http://haskell.org/cabal/users-guide/ name:                rasterific-svg-version:             0.2.3.1+version:             0.2.3.2 synopsis:            SVG renderer based on Rasterific. description:         SVG renderer that will let you render svg-tree parsed                      SVG file to a JuicyPixel image or Rasterific Drawing.@@ -22,7 +22,7 @@ Source-Repository this     Type:      git     Location:  git://github.com/Twinside/rasterific-svg.git-    Tag:       v0.2.3.1+    Tag:       v0.2.3.2  library   hs-source-dirs: src@@ -36,7 +36,7 @@                , Graphics.Rasterific.Svg.RasterificRender                , Graphics.Rasterific.Svg.RasterificTextRendering -  build-depends: base >= 4.6 && < 4.9+  build-depends: base >= 4.5 && < 4.9                , directory                , bytestring >= 0.10                , filepath@@ -61,7 +61,7 @@   Ghc-options: -O3 -Wall   ghc-prof-options: -rtsopts -Wall -prof   Build-Depends: base >= 4.6-               , optparse-applicative >= 0.11 && < 0.12+               , optparse-applicative >= 0.11 && < 0.13                , directory >= 1.0                , rasterific-svg                , Rasterific