Support GHC-8.2

This commit is contained in:
Oleg Grenrus 2017-06-17 00:16:43 +03:00
parent 2107a0588b
commit 18a290424c
3 changed files with 14 additions and 4 deletions

2
.gitignore vendored
View File

@ -14,6 +14,8 @@ examples/TextSize
examples/Temp.hs
dist
dist-newstyle
.ghc.environment*
cabal-dev
*.o
*.hi

View File

@ -1,4 +1,5 @@
language: haskell
language: generic
sudo: required
env:
matrix:
@ -6,7 +7,9 @@ env:
- HPVER=2014.2.0.0 CABALVER=1.18
- GHCVER=7.6.3 CABALVER=1.18
- GHCVER=7.8.4 CABALVER=1.18
- GHCVER=7.10.2 CABALVER=1.22
- GHCVER=7.10.3 CABALVER=1.22
- GHCVER=8.0.2 CABALVER=1.24
- GHCVER=8.2.1 CABALVER=2.0
- GHCVER=head CABALVER=head
matrix:

View File

@ -1,8 +1,9 @@
name: svg-builder
version: 0.1.0.2
x-revision: 1
synopsis: DSL for building SVG.
description: Fast, easy to write SVG.
homepage: http://github.com/jeffreyrosenbluth/svg-builder.git
homepage: https://github.com/diagrams/svg-builder.git
license: BSD3
license-file: LICENSE
author: Jeffrey Rosenbluth
@ -13,6 +14,10 @@ build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/diagrams/svg-builder.git
library
ghc-options: -Wall -fsimpl-tick-factor=200
exposed-modules: Graphics.Svg,
@ -20,7 +25,7 @@ library
Graphics.Svg.Path,
Graphics.Svg.Elements,
Graphics.Svg.Attributes
build-depends: base >= 4.5 && < 4.10,
build-depends: base >= 4.5 && < 4.11,
blaze-builder >= 0.4 && < 0.5,
bytestring >= 0.10 && < 0.11,
hashable >= 1.1 && < 1.3,