rasterific-svg 0.3.1.1 → 0.3.1.2
raw patch · 3 files changed
+86/−84 lines, 3 filesdep ~FontyFruitydep ~Rasterificdep ~base
Dependency ranges changed: FontyFruity, Rasterific, base, optparse-applicative, svg-tree, transformers
Files
- changelog +0/−74
- changelog.md +78/−0
- rasterific-svg.cabal +8/−10
− changelog
@@ -1,74 +0,0 @@-Change log-==========--v0.3.1.1 March 2016--------------------- * Bumping to svg-tree 0.5- * Bumping linear to 0.20--v0.3 February 2016-------------------- * Fix: Updating to handle svg-tree 0.4--v0.2.3.2 October 2015----------------------- * Fix: bumping optparse-applicative upper bound--v0.2.3.1 May 2015------------------- * Fix: Bumping Rasterific version to compiler- without problems with GHC 7.6--v0.2.3 May 2015------------------ * Adding: PDF output- * Fix: font cache created in temp dir--v0.2.2.1 May 2015-------------------- * Fix: GHC < 7.10 compilation--v0.2.2 May 2015------------------ * Fix: lens upper bound, and removing it.--v0.2.1 May 2015------------------ * Adding: support for arc in path--v0.2 April 2015------------------ * Bumping: using svg-tree 0.3--v0.1.1 April 2015-------------------- * Fix: Fixing GHC 7.10.1 related warnings- * Fix: Group transparency.--v0.1.0.3 March 2015---------------------- * Fix: Bumping lens dependency--v0.1.0.2 February 2015------------------------- * Fix: Removing all test suites from distribution package.- * Fix: Lowering some low version bounds.--v0.1.0.1 February 2015------------------------- * Fix: Removing bench from test suite.--v0.1 February 2015--------------------- * Initial release-
+ changelog.md view
@@ -0,0 +1,78 @@+Change log+==========++v0.3.1.2 May 2016+-----------------+ * Fix: Bumping for GHC 8.0++v0.3.1.1 March 2016+-------------------+ * Fix: Bumping to svg-tree 0.5+ * Fix: Bumping linear to 0.20++v0.3 February 2016+------------------+ * Fix: Updating to handle svg-tree 0.4++v0.2.3.2 October 2015+---------------------+ * Fix: bumping optparse-applicative upper bound++v0.2.3.1 May 2015+-----------------+ * Fix: Bumping Rasterific version to compiler+ without problems with GHC 7.6++v0.2.3 May 2015+---------------++ * Adding: PDF output+ * Fix: font cache created in temp dir++v0.2.2.1 May 2015+-----------------++ * Fix: GHC < 7.10 compilation++v0.2.2 May 2015+---------------++ * Fix: lens upper bound, and removing it.++v0.2.1 May 2015+---------------++ * Adding: support for arc in path++v0.2 April 2015+---------------++ * Bumping: using svg-tree 0.3++v0.1.1 April 2015+-----------------++ * Fix: Fixing GHC 7.10.1 related warnings+ * Fix: Group transparency.++v0.1.0.3 March 2015+-------------------++ * Fix: Bumping lens dependency++v0.1.0.2 February 2015+----------------------++ * Fix: Removing all test suites from distribution package.+ * Fix: Lowering some low version bounds.++v0.1.0.1 February 2015+----------------------++ * Fix: Removing bench from test suite.++v0.1 February 2015+------------------++ * Initial release+
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.3.1.1+version: 0.3.1.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.@@ -10,7 +10,7 @@ author: Vincent Berthoux maintainer: Vincent Berthoux -- copyright: -extra-source-files: changelog, README.md+extra-source-files: changelog.md, README.md category: Graphics, Svg build-type: Simple cabal-version: >=1.10@@ -22,13 +22,12 @@ Source-Repository this Type: git Location: git://github.com/Twinside/rasterific-svg.git- Tag: v0.3.1.1+ Tag: v0.3.1.2 library hs-source-dirs: src default-language: Haskell2010 Ghc-options: -O3 -Wall- ghc-prof-options: -Wall -prof -- -auto-all exposed-modules: Graphics.Rasterific.Svg other-modules: Graphics.Rasterific.Svg.RenderContext@@ -36,7 +35,7 @@ , Graphics.Rasterific.Svg.RasterificRender , Graphics.Rasterific.Svg.RasterificTextRendering - build-depends: base >= 4.5 && < 4.9+ build-depends: base >= 4.5 && < 5 , directory , bytestring >= 0.10 , filepath@@ -44,14 +43,14 @@ , scientific >= 0.3 , JuicyPixels >= 3.2 && < 3.3 , containers >= 0.5- , Rasterific >= 0.6.1 && < 0.7- , FontyFruity >= 0.5 && < 0.6- , svg-tree >= 0.5 && < 0.6+ , Rasterific >= 0.6.1.1 && < 0.7+ , FontyFruity >= 0.5.2.1 && < 0.6+ , svg-tree >= 0.5.1.1 && < 0.6 , lens >= 4.5 && < 5 , linear >= 1.20 , vector >= 0.10 , text >= 1.2- , transformers >= 0.3 && < 0.5+ , transformers >= 0.3 && < 0.6 , mtl >= 2.1 && < 2.3 Executable svgrender@@ -59,7 +58,6 @@ hs-source-dirs: exec-src Main-Is: svgrender.hs Ghc-options: -O3 -Wall- ghc-prof-options: -rtsopts -Wall -prof Build-Depends: base >= 4.6 , optparse-applicative >= 0.11 && < 0.13 , directory >= 1.0