packages feed

static-text 0.2.0.6 → 0.2.0.7

raw patch · 6 files changed

+18/−5 lines, 6 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.2.0.7] - 2021-07-10++### Changed++- GHC 9.x support+ ## [0.2.0.6] - 2020-06-03  ### Changed@@ -94,6 +100,7 @@  ## [0.1.0.0] - 2014-08-10 +[0.2.0.7]: https://github.com/dzhus/static-text/compare/0.2.0.6...0.2.0.7 [0.2.0.6]: https://github.com/dzhus/static-text/compare/0.2.0.5...0.2.0.6 [0.2.0.5]: https://github.com/dzhus/static-text/compare/0.2.0.4...0.2.0.5 [0.2.0.4]: https://github.com/dzhus/static-text/compare/0.2.0.3...0.2.0.4
README.lhs view
@@ -1,6 +1,6 @@ # static-text: lists, Texts, ByteStrings and Vectors of statically known length -[![Build & test](https://github.com/dzhus/static-text/workflows/Build%20&%20test/badge.svg)](https://github.com/dzhus/static-text/actions)+[![Github CI build status](https://github.com/dzhus/static-text/actions/workflows/ci.yaml/badge.svg)](https://github.com/dzhus/static-text/actions/workflows/ci.yaml) [![Hackage](https://img.shields.io/hackage/v/static-text.svg?colorB=5e5184&style=flat)](https://hackage.haskell.org/package/static-text) [![Hackage deps](https://img.shields.io/hackage-deps/v/static-text.svg)](http://packdeps.haskellers.com/feed?needle=static-text) 
README.md view
@@ -1,6 +1,6 @@ # static-text: lists, Texts, ByteStrings and Vectors of statically known length -[![Build & test](https://github.com/dzhus/static-text/workflows/Build%20&%20test/badge.svg)](https://github.com/dzhus/static-text/actions)+[![Github CI build status](https://github.com/dzhus/static-text/actions/workflows/ci.yaml/badge.svg)](https://github.com/dzhus/static-text/actions/workflows/ci.yaml) [![Hackage](https://img.shields.io/hackage/v/static-text.svg?colorB=5e5184&style=flat)](https://hackage.haskell.org/package/static-text) [![Hackage deps](https://img.shields.io/hackage-deps/v/static-text.svg)](http://packdeps.haskellers.com/feed?needle=static-text) 
src/Data/StaticText.hs view
@@ -64,6 +64,8 @@ -- >>> :set -XTemplateHaskell -- >>> :set -XOverloadedStrings -- >>> import Data.Char (toUpper)+-- >>> import Data.StaticText+-- >>> import Prelude as P hiding (drop, length, map, replicate, take)   -- | Safely create a Static, possibly altering the source to match
src/Data/StaticText/TH.hs view
@@ -45,7 +45,11 @@     at <- newName "a"     return $ SigE (AppE (VarE 'unsafeCreate) (LitE $ StringL s))                 (ForallT+#if MIN_VERSION_template_haskell(2,17,0)+                 [PlainTV at SpecifiedSpec]+#else                  [PlainTV at]+#endif #if MIN_VERSION_template_haskell(2,10,0)                  [ AppT (ConT ''IsString) (VarT at)                  , AppT (ConT ''IsStaticText) (VarT at)] $
static-text.cabal view
@@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.33.0.+-- This file has been generated from package.yaml by hpack version 0.34.4. -- -- see: https://github.com/sol/hpack ----- hash: d21962672e633dd91982eb4e4aa243753a52c798f97d59465c1e11f5cc10da02+-- hash: 250ceab7b8c05aeee336229f04b8f6d2c7e3cf5c0e7535f68aa02a5e2e88f7a8  name:           static-text-version:        0.2.0.6+version:        0.2.0.7 synopsis:       Lists, Texts, ByteStrings and Vectors of statically known length description:    static-text provides type-level safety for basic operations on string-like types (finite lists of elements), such as Data.Text, String (and all lists), Data.ByteString and Data.Vector. Use it when you need static guarantee on lengths of strings produced in your code. category:       Data, Text, Type System