diagrams-postscript 1.5 → 1.5.1
raw patch · 3 files changed
+12/−12 lines, 3 filesdep ~basedep ~diagrams-libdep ~hashablePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, diagrams-lib, hashable, lens, semigroups
API changes (from Hackage documentation)
+ Diagrams.Backend.Postscript: instance GHC.Classes.Eq (Diagrams.Core.Types.Options Diagrams.Backend.Postscript.Postscript Linear.V2.V2 GHC.Types.Double)
- Diagrams.Backend.Postscript: data family Options b (v :: Type -> Type) n :: Type
+ Diagrams.Backend.Postscript: data family Options b (v :: Type -> Type) n
Files
- diagrams-postscript.cabal +10/−10
- src/Diagrams/Backend/Postscript.hs +1/−1
- src/Diagrams/Backend/Postscript/CmdLine.hs +1/−1
diagrams-postscript.cabal view
@@ -1,5 +1,5 @@ Name: diagrams-postscript-Version: 1.5+Version: 1.5.1 Synopsis: Postscript backend for diagrams drawing EDSL Description: This package provides a modular backend for rendering diagrams created with the diagrams EDSL using Postscript.@@ -14,7 +14,7 @@ . * "Diagrams.Backend.CMYK" - Special support for CMYK color attributes.-Homepage: http://projects.haskell.org/diagrams/+Homepage: https://diagrams.github.io/ License: BSD3 License-file: LICENSE Author: Ryan Yates@@ -23,7 +23,7 @@ Category: Graphics Build-type: Simple Cabal-version: 1.18-Tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.3 || ==8.6.5 || ==8.8.1+Tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 || ==9.2.1 Source-repository head type: git location: https://github.com/diagrams/diagrams-postscript.git@@ -34,18 +34,18 @@ Diagrams.Backend.Postscript.CmdLine Graphics.Rendering.Postscript Hs-source-dirs: src- Build-depends: base >= 4.8 && < 4.14,- bytestring >= 0.9 && <0.11,+ Build-depends: base >= 4.8 && < 4.17,+ bytestring >= 0.9 && <0.12, mtl >= 2.0 && < 2.3,- diagrams-core >= 1.3 && < 1.5,+ diagrams-core >= 1.3 && < 1.6, diagrams-lib >= 1.3 && < 1.5, data-default-class < 0.2, statestack >= 0.2 && < 0.4, split >= 0.1.2 && < 0.3,- monoid-extras >= 0.3 && < 0.6,- semigroups >= 0.3.4 && < 0.20,- lens >= 4.0 && < 4.19,+ monoid-extras >= 0.3 && < 0.7,+ semigroups >= 0.3.4 && < 0.21,+ lens >= 4.0 && < 5.2, containers >= 0.3 && < 0.7,- hashable >= 1.1 && < 1.4+ hashable >= 1.1 && < 1.5 default-language: Haskell2010
src/Diagrams/Backend/Postscript.hs view
@@ -141,7 +141,7 @@ , _psSizeSpec :: SizeSpec V2 Double -- ^ the requested size of the output , _psOutputFormat :: OutputFormat -- ^ the output format and associated options }- deriving (Show)+ deriving (Show, Eq) renderRTree _ opts t = let surfaceF surface = fst (C.renderBuilder surface r)
src/Diagrams/Backend/Postscript/CmdLine.hs view
@@ -47,7 +47,7 @@ -- "Diagrams.Backend.Postscript" for more information. -- -- For a tutorial on command-line diagram creation see--- <http://projects.haskell.org/diagrams/doc/cmdline.html>.+-- <https://diagrams.github.io/doc/cmdline.html>. -- -----------------------------------------------------------------------------