hsx2hs 0.13.4 → 0.13.5
raw patch · 2 files changed
+9/−12 lines, 2 filesdep ~template-haskellPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: template-haskell
API changes (from Hackage documentation)
Files
- .travis.yml +3/−5
- hsx2hs.cabal +6/−7
.travis.yml view
@@ -21,11 +21,9 @@ - env: CABALVER=1.22 GHCVER=7.10.3 HAPPYVER=1.19.5 compiler: ": #GHC 7.10.3" addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3,happy-1.19.5], sources: [hvr-ghc]}}- - env: CABALVER=1.22 GHCVER=head HAPPYVER=1.19.5- compiler: ": #GHC HEAD"- addons: {apt: {packages: [cabal-install-1.22,ghc-head,happy-1.19.5], sources: [hvr-ghc]}}- allow_failures:- - env: CABALVER=1.22 GHCVER=head HAPPYVER=1.19.5+ - env: CABALVER=1.24 GHCVER=8.0.1 HAPPYVER=1.19.5+ compiler: ": #GHC 8.0.1"+ addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.1,happy-1.19.5], sources: [hvr-ghc]}} before_install: - unset CC
hsx2hs.cabal view
@@ -1,5 +1,5 @@ Name: hsx2hs-Version: 0.13.4+Version: 0.13.5 License: BSD3 License-File: LICENSE Author: Niklas Broberg, Joel Bjornson@@ -10,14 +10,14 @@ Synopsis: HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code. Description: HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code. - The trhsx preprocessor translates .hsx source files into ordinary .hs files. Literal+ The hsx2hs preprocessor translates .hsx source files into ordinary .hs files. Literal XML syntax is translated into function calls for creating XML values of the appropriate forms. - trhsx transforms literal XML syntax into a series of function calls. Any project+ hsx2hs transforms literal XML syntax into a series of function calls. Any project can make use of the syntax by providing definitions for those functions, and the XML values produced will be of the types specified. This works for any types, since- trhsx doesn't make any assumptions, or inserts any information depending on types.+ hsx2hs doesn't make any assumptions, or inserts any information depending on types. XMLGenerator defines a few typeclasses that together cover the functions injected by the preprocessor. A project that uses these classes to provide the semantics for the injected@@ -28,8 +28,7 @@ necessary machinery. Homepage: https://github.com/seereason/hsx2hs--Tested-With: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3+Tested-With: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.1 Cabal-Version: >= 1.6 Build-Type: Simple Extra-source-files: .travis.yml@@ -45,7 +44,7 @@ Build-depends: mtl >= 2.0 && < 2.3, haskell-src-exts >= 1.16 && < 1.18, haskell-src-meta >= 0.6 && < 0.7,- template-haskell >= 2.7 && < 2.11,+ template-haskell >= 2.7 && < 2.12, bytestring, utf8-string >= 0.3 && < 1.1