interp 1.0.0.0 → 1.0.0.1
raw patch · 6 files changed
+27/−2 lines, 6 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- interp.cabal +2/−2
- src/Data/Text/Interp.hs +5/−0
- src/Data/Text/Interp/CLI.hs +5/−0
- src/Data/Text/Interp/Get.hs +5/−0
- src/Data/Text/Interp/Parse.hs +5/−0
- src/Data/Text/Interp/Types.hs +5/−0
interp.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 2c5ae1e8028bb10c6d701cd2ccc86981da63658513595f95c99c55d09c26074e+-- hash: 83a5dab2b39540befe23dab5ca590deef058e6ed65bd7c1a4f88ddf604204e52 name: interp-version: 1.0.0.0+version: 1.0.0.1 synopsis: Tracery-like randomized text interpolation description: Please see the README on GitHub at <https://github.com/swizzard/interp#readme> category: Text, Interpolation
src/Data/Text/Interp.hs view
@@ -1,3 +1,8 @@+{- |+ Module : Data.Text.Interp++ Main library module+-} module Data.Text.Interp ( opts , doInterp
src/Data/Text/Interp/CLI.hs view
@@ -1,3 +1,8 @@+{- |+ Module : Data.Text.Interp.CLI++ Helper functions and types for CLI use+-} module Data.Text.Interp.CLI ( Input(..) , opts
src/Data/Text/Interp/Get.hs view
@@ -1,3 +1,8 @@+{- |+ Module: Data.Text.Interp.Get++ Functions to extract values from Subst mappings+-} {-# LANGUAGE OverloadedStrings #-} module Data.Text.Interp.Get ( get
src/Data/Text/Interp/Parse.hs view
@@ -1,3 +1,8 @@+{- |+ Moduel : Data.Text.Interp.Parse++ Parsing types and functions+-} {-# LANGUAGE OverloadedStrings #-} module Data.Text.Interp.Parse where
src/Data/Text/Interp/Types.hs view
@@ -1,3 +1,8 @@+{- |+ Module : Data.Text.Interp.Types++ Types shared among other modules+-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} module Data.Text.Interp.Types ( Binding(..)