packages feed

pretty-simple 4.1.3.0 → 4.1.4.0

raw patch · 3 files changed

+8/−2 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Text.Pretty.Simple: data () => Color
+ Text.Pretty.Simple: data Color
- Text.Pretty.Simple: data () => Intensity
+ Text.Pretty.Simple: data Intensity

Files

CHANGELOG.md view
@@ -1,3 +1,9 @@+## 4.1.4.0++*   Fix double-quoting issue with `pTraceShowWith`.+    [#132](https://github.com/cdepillabout/pretty-simple/pull/132)+    Thanks [@leoslf](https://github.com/leoslf)!+ ## 4.1.3.0  *   Remove custom setup. This makes cross-compiling `pretty-simple` a lot more
pretty-simple.cabal view
@@ -1,5 +1,5 @@ name:                pretty-simple-version:             4.1.3.0+version:             4.1.4.0 synopsis:            pretty printer for data types with a 'Show' instance. description:         Please see <https://github.com/cdepillabout/pretty-simple#readme README.md>. homepage:            https://github.com/cdepillabout/pretty-simple
src/Debug/Pretty/Simple.hs view
@@ -290,7 +290,7 @@ -- @since ? {-# WARNING pTraceShowWith "'pTraceShowWith' remains in code" #-} pTraceShowWith :: Show b => (a -> b) -> a -> a-pTraceShowWith f = (show . f) >>= pTraceShow+pTraceShowWith f = pTraceWith (show . f)  ------------------------------------------ -- Helpers