reflection 2.1.1.1 → 2.1.2
raw patch · 4 files changed
+16/−1 lines, 4 files
Files
- .travis.yml +3/−0
- CHANGELOG.markdown +3/−0
- fast/Data/Reflection.hs +5/−0
- reflection.cabal +5/−1
.travis.yml view
@@ -1,8 +1,11 @@ env:+ - GHCVER=7.0.2 CABALVER=1.24+ - GHCVER=7.2.2 CABALVER=1.24 - GHCVER=7.4.2 CABALVER=1.16 - GHCVER=7.6.3 CABALVER=1.16 - GHCVER=7.8.4 CABALVER=1.18 - GHCVER=7.10.1 CABALVER=1.22+ - GHCVER=8.0.1 CABALVER=1.24 - GHCVER=head CABALVER=head matrix:
CHANGELOG.markdown view
@@ -1,3 +1,6 @@+# 2.1.2+* Support cross-compilation and unregistered GHC builds.+ # 2.1.1.1 * Fixed typos in the documentation.
fast/Data/Reflection.hs view
@@ -15,7 +15,12 @@ #define USE_TYPE_LITS 1 #endif #ifdef MIN_VERSION_template_haskell+# if __GLASGOW_HASKELL__ >= 800+-- TH-subset that works with stage1 & unregisterised GHCs+{-# LANGUAGE TemplateHaskellQuotes #-}+# else {-# LANGUAGE TemplateHaskell #-}+# endif #endif {-# OPTIONS_GHC -fno-warn-orphans #-}
reflection.cabal view
@@ -1,5 +1,5 @@ name: reflection-version: 2.1.1.1+version: 2.1.2 license: BSD3 license-file: LICENSE author: Edward A. Kmett, Elliott Hird, Oleg Kiselyov and Chung-chieh Shan@@ -73,6 +73,10 @@ default-language: Haskell98 if flag(template-haskell) && impl(ghc)+ if !impl(ghc >= 8.0)+ other-extensions: TemplateHaskell+ -- else+ -- other-extensions: TemplateHaskellQuotes -- Hackage doesn't know this extension yet build-depends: template-haskell if !flag(slow) && (impl(ghc) || impl(hugs))