packages feed

tz 0.1.1.0 → 0.1.1.1

raw patch · 3 files changed

+10/−4 lines, 3 filesdep ~template-haskell

Dependency ranges changed: template-haskell

Files

Data/Time/Zones/Internal/CoerceTH.hs view
@@ -6,6 +6,7 @@ Stability   : experimental -} +{-# LANGUAGE CPP #-} {-# LANGUAGE TemplateHaskell #-}  module Data.Time.Zones.Internal.CoerceTH (@@ -20,7 +21,11 @@ getNewTypeCon newTy = do   info <- reify newTy   case info of+#if MIN_VERSION_template_haskell(2,11,0)+    TyConI (NewtypeD _ _ _ _ (NormalC name _) _) -> return name+#else     TyConI (NewtypeD _ _ _ (NormalC name _) _) -> return name+#endif     _ -> fail "Not a newtype"  constructNewType :: Name -> Q Exp
stack.yaml view
@@ -1,14 +1,15 @@ # For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md  # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)-resolver: lts-5.15+resolver: nightly-2016-05-29  # Local packages, usually specified by relative directory name packages: - '.'  # Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)-extra-deps: []+extra-deps:+- bindings-posix-1.2.6  # Override default flag values for local packages and extra-deps flags: {}
tz.cabal view
@@ -1,5 +1,5 @@ Name: tz-Version: 0.1.1.0+Version: 0.1.1.1 License: Apache-2.0 License-File: LICENSE Author: Mihaly Barasz, Gergely Risko@@ -63,7 +63,7 @@       Data.Time.Zones.TH,       Data.Time.Zones.Internal.CoerceTH     Build-Depends:-      template-haskell   >= 2.6      && < 2.11+      template-haskell   >= 2.6      && < 2.12     CPP-Options: -DTZ_TH