packages feed

safe-coloured-text-layout-gen 0.0.0.1 → 0.0.0.2

raw patch · 3 files changed

+11/−8 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog for safe-coloured-text-layout-gen +## [0.0.0.2] - 2026-07-24++### Changed++* Reformatted the test suite; no functional changes.+ ## [0.0.0.1] - 2024-08-03  ### Changed
safe-coloured-text-layout-gen.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.36.0.+-- This file has been generated from package.yaml by hpack version 0.38.3. -- -- see: https://github.com/sol/hpack  name:           safe-coloured-text-layout-gen-version:        0.0.0.1+version:        0.0.0.2 description:    Generators for types in safe-coloured-text-layout homepage:       https://github.com/NorfairKing/safe-coloured-text#readme bug-reports:    https://github.com/NorfairKing/safe-coloured-text/issues
test/Text/Colour/LayoutSpec.hs view
@@ -55,8 +55,7 @@         ( renderChunksText             With24BitColours             ( renderTable $-                ( table $ [[[chunk (T.pack (show (x + y)))] | x <- [0 :: Int .. 9]] | y <- [0 :: Int .. 9]]-                )+                (table $ [[[chunk (T.pack (show (x + y)))] | x <- [0 :: Int .. 9]] | y <- [0 :: Int .. 9]])                   { tableColumnSeparator = "@"                   }             )@@ -67,8 +66,7 @@         ( renderChunksText             With24BitColours             ( renderTable $-                ( table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]]-                )+                (table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]])                   { tableBackground = Just (SingleColour black)                   }             )@@ -79,8 +77,7 @@         ( renderChunksText             With24BitColours             ( renderTable $-                ( table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]]-                )+                (table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]])                   { tableBackground = Just (Bicolour (Just black) (Just brightBlack))                   }             )