packages feed

static-text 0.2.0.3 → 0.2.0.4

raw patch · 2 files changed

+11/−4 lines, 2 filesdep ~doctest-driver-gendep ~tastyPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: doctest-driver-gen, tasty

API changes (from Hackage documentation)

+ Data.StaticText: -- | Basic element type. For <tt>IsStaticText [a]</tt>, this is <tt>a</tt>.
+ Data.StaticText: data family Static a (i :: Nat)
+ Data.StaticText.Class: -- <tt>t</tt> of length 6.
+ Data.StaticText.Class: -- type-level length. <tt>Static t 6</tt> means a value of type
+ Data.StaticText.Class: -- | Basic element type. For <tt>IsStaticText [a]</tt>, this is <tt>a</tt>.
- Data.StaticText: append :: forall a m n. (IsStaticText a) => Static a m -> Static a n -> Static a (m + n)
+ Data.StaticText: append :: forall a m n. IsStaticText a => Static a m -> Static a n -> Static a (m + n)
- Data.StaticText: padLeft :: forall a m n. (IsStaticText a, KnownNat m, KnownNat (n - m), n ~ (n - m + m), m <= n) => Elem a -> Static a m -> Static a n
+ Data.StaticText: padLeft :: forall a m n. (IsStaticText a, KnownNat m, KnownNat (n - m), n ~ ((n - m) + m), m <= n) => Elem a -> Static a m -> Static a n

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.2.0.4] - 2019-01-23++### Changed++- Test suite dependencies bump+ ## [0.2.0.3] - 2018-10-08  ### Changed@@ -76,6 +82,7 @@  ## [0.1.0.0] - 2014-08-10 +[0.2.0.4]: https://github.com/dzhus/static-text/compare/0.2.0.3...0.2.0.4 [0.2.0.3]: https://github.com/dzhus/static-text/compare/0.2.0.2...0.2.0.3 [0.2.0.2]: https://github.com/dzhus/static-text/compare/0.2.0.1...0.2.0.2 [0.2.0.1]: https://github.com/dzhus/static-text/compare/0.2.0...0.2.0.1
static-text.cabal view
@@ -1,6 +1,6 @@-cabal-version: >=1.10+cabal-version: 1.12 name: static-text-version: 0.2.0.3+version: 0.2.0.4 license: BSD3 license-file: LICENSE maintainer: dima@dzhus.org@@ -87,7 +87,7 @@     build-depends:         base <5,         doctest <0.17,-        doctest-driver-gen <0.3,+        doctest-driver-gen <0.4,         template-haskell <2.15  test-suite static-text-example@@ -102,6 +102,6 @@         base <5,         bytestring <0.11,         static-text -any,-        tasty <1.2,+        tasty <1.3,         tasty-hunit <0.11,         template-haskell <2.15