packages feed

yasi 0.1.2.0 → 0.1.2.1

raw patch · 3 files changed

+11/−1 lines, 3 filesdep ~hedgehogdep ~tasty-hedgehogdep ~template-haskellPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

Dependency ranges changed: hedgehog, tasty-hedgehog, template-haskell, text

API changes (from Hackage documentation)

+ Yasi.Internal: instance Yasi.Internal.Stringy Data.ByteString.Internal.ByteString Data.ByteString.Lazy.Internal.ByteString
+ Yasi.Internal: instance Yasi.Internal.Stringy Data.ByteString.Lazy.Internal.ByteString Data.ByteString.Internal.ByteString

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for yasi +## 0.1.2.1 -- 2021-03-15++ * Allow to interpolate lazy into strict `ByteString`s and vice versa.+ ## 0.1.2.0 -- 2021-03-15   * Add `unindent` utility function.
src/Yasi/Internal.hs view
@@ -156,5 +156,11 @@ instance Stringy B.ByteString B.ByteString where   stringy = id +instance Stringy B.ByteString BL.ByteString where+  stringy = BL.fromStrict+ instance Stringy BL.ByteString BL.ByteString where   stringy = id++instance Stringy BL.ByteString B.ByteString where+  stringy = BL.toStrict
yasi.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: yasi-version: 0.1.2.0+version: 0.1.2.1  synopsis: Yet another string interpolator description: