diff --git a/CHANGELOG.md b/CHANGELOG.md index 784434d..e590359 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Revision history for haskell-stack-trace-pugin +## 0.1.1.0 -- 2020-01-18 + +- Ergonomic improvements [#1](https://github.com/waddlaw/haskell-stack-trace-plugin/pull/1) (@khwarizmii) +- Add Integration test +- Add GitHub Action + ## 0.1.0.0 -- 2018-12-07 -* First version. Released on an unsuspecting world. +- First version. Released on an unsuspecting world. diff --git a/Readme.md b/Readme.md index 70b6c7d..882ddff 100644 --- a/Readme.md +++ b/Readme.md @@ -5,8 +5,8 @@ This plugin allow implicitly add `HasCallStack` class to every top-level function for all module. Hence, we can to get completely continuous call stack. -1. (implicitly) Import [GHC.Stack](https://www.stackage.org/haddock/lts-12.21/base-4.11.1.0/GHC-Stack.html) for all modules. -2. Add [HasCallStack](https://www.stackage.org/haddock/lts-12.21/base-4.11.1.0/GHC-Stack.html#t:HasCallStack) constraint for all top-level functions. +1. (implicitly) Import [GHC.Stack](https://hackage.haskell.org/package/base-4.12.0.0/docs/GHC-Stack.html) for all modules. +2. Add [HasCallStack](https://hackage.haskell.org/package/base-4.12.0.0/docs/GHC-Stack.html#t:HasCallStack) constraint for all top-level functions. Requirement: (8.6 <= on GHC) @@ -103,4 +103,4 @@ CallStack (from HasCallStack): main, called at example/Main.hs:6:1 in main:Main ``` -Great!!! \ No newline at end of file +Great!!! diff --git a/haskell-stack-trace-plugin.cabal b/haskell-stack-trace-plugin.cabal index ec89e93..9154446 100644 --- a/haskell-stack-trace-plugin.cabal +++ b/haskell-stack-trace-plugin.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: haskell-stack-trace-plugin -version: 0.1.0.1 +version: 0.1.1.0 synopsis: haskell-stack-trace-plugin description: This plugin allow implicitly add HasCallStack class to every top-level function for all module. Hence, we can to get completely continuous call stack.