packages feed

string-interpolate 0.3.1.2 → 0.3.2.0

raw patch · 5 files changed

+15/−8 lines, 5 filesdep ~formattingdep ~template-haskelldep ~text

Dependency ranges changed: formatting, template-haskell, text

Files

CHANGELOG.md view
@@ -2,6 +2,10 @@  ## Unreleased +## v0.3.2.0 (2022-12-12)+++ Added support for GHC 9.4+ ## v0.3.1.2 (2022-05-15)  + Updated dependency versions for HSpec and template-haskell
bench/bench.hs view
@@ -8,6 +8,7 @@ {-# LANGUAGE QuasiQuotes       #-} {-# LANGUAGE RankNTypes        #-} {-# LANGUAGE TypeApplications  #-}+{-# LANGUAGE TypeOperators     #-}  import Criterion      ( Benchmark, bench, bgroup, env, nf ) import Criterion.Main ( defaultMain )
src/lib/Data/String/Interpolate/Conversion.hs view
@@ -14,6 +14,7 @@ {-# LANGUAGE PackageImports        #-} {-# LANGUAGE Strict                #-} {-# LANGUAGE TypeFamilies          #-}+{-# LANGUAGE TypeOperators         #-} {-# LANGUAGE UndecidableInstances  #-}  module Data.String.Interpolate.Conversion
src/lib/Data/String/Interpolate/Conversion/Classes.hs view
@@ -1,6 +1,7 @@ {-# LANGUAGE DataKinds             #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE TypeFamilies          #-}+{-# LANGUAGE TypeOperators         #-}  module Data.String.Interpolate.Conversion.Classes   ( B(..)
string-interpolate.cabal view
@@ -1,7 +1,7 @@ cabal-version: 1.18  name:           string-interpolate-version:        0.3.1.2+version:        0.3.2.0 synopsis:       Haskell string/text/bytestring interpolation that just works description:    Unicode-aware string interpolation that handles all textual types.                 .@@ -72,11 +72,11 @@     build-depends:         base >=4.11       , bytestring <0.12-      , text <1.3+      , text <2.1       , split <0.3       , haskell-src-exts <1.24       , haskell-src-meta <0.9-      , template-haskell <2.19+      , template-haskell <2.20       , text-conversions <0.4       , utf8-string <1.1     default-language: Haskell2010@@ -93,8 +93,8 @@       , string-interpolate       , QuickCheck <2.15       , bytestring <0.12-      , text <1.3-      , template-haskell <2.19+      , text <2.1+      , template-haskell <2.20       , hspec <2.11       , hspec-core <2.11       , quickcheck-instances <0.4@@ -114,10 +114,10 @@       , string-interpolate       , QuickCheck <2.15       , bytestring <0.12-      , text <1.3+      , text <2.1       , deepseq <1.5-      , criterion <1.6-      , formatting <7.2+      , criterion <1.7+      , formatting <7.3       , interpolate <0.3       , neat-interpolation <0.6     if flag(extended-benchmarks)