type-errors-pretty 0.0.1.1 → 0.0.1.2
raw patch · 4 files changed
+20/−14 lines, 4 filesdep ~basedep ~doctest
Dependency ranges changed: base, doctest
Files
- CHANGELOG.md +6/−1
- README.md +1/−5
- src/Type/Errors/Pretty.hs +2/−0
- type-errors-pretty.cabal +11/−8
CHANGELOG.md view
@@ -3,6 +3,11 @@ `type-errors-pretty` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.0.1.2 — Aug 2, 2021++* [#20](https://github.com/chshersh/type-errors-pretty/issues/20):+ Support GHC-9.0.+ ## 0.0.1.1 — Apr 18, 2020 * [#10](https://github.com/chshersh/type-errors-pretty/issues/10):@@ -18,4 +23,4 @@ * Initially created. [1]: https://pvp.haskell.org-[2]: https://github.com/chshersh/type-errors-pretty/releases+[2]: https://github.com/kowainik/type-errors-pretty/releases
README.md view
@@ -2,12 +2,8 @@  -[](https://github.com/chshersh/type-errors-pretty/actions)-[](https://travis-ci.com/chshersh/type-errors-pretty)-[](https://ci.appveyor.com/project/chshersh/type-errors-pretty)+[](https://github.com/kowainik/type-errors-pretty/actions) [](https://hackage.haskell.org/package/type-errors-pretty)-[](http://stackage.org/lts/package/type-errors-pretty)-[](http://stackage.org/nightly/package/type-errors-pretty) [](LICENSE)
src/Type/Errors/Pretty.hs view
@@ -5,8 +5,10 @@ {- | Copyright: (c) 2019-2020 Dmitrii Kovanikov+ (c) 2020 Kowainik SPDX-License-Identifier: MPL-2.0 Maintainer: Dmitrii Kovanikov <kovanikov@gmail.com>+ Kowainik <xrom.xkov@gmail.com> This module provides type-level functions and operators to make the job of writing text of custom type errors easier. The motivation behind using custom
type-errors-pretty.cabal view
@@ -1,17 +1,19 @@ cabal-version: 2.4 name: type-errors-pretty-version: 0.0.1.1+version: 0.0.1.2 synopsis: Combinators for writing pretty type errors easily description: This library provides replacements for the @ErrorMessage@ constructors to write the text of custom error messages easily.-homepage: https://github.com/chshersh/type-errors-pretty-bug-reports: https://github.com/chshersh/type-errors-pretty/issues+homepage: https://github.com/kowainik/type-errors-pretty+bug-reports: https://github.com/kowainik/type-errors-pretty/issues license: MPL-2.0 license-file: LICENSE author: Dmitrii Kovanikov maintainer: Dmitrii Kovanikov <kovanikov@gmail.com>+ Kowainik <xrom.xkov@gmail.com> copyright: 2019-2020 Dmitrii Kovanikov+ 2020-2021 Kowainik category: Types, Type Errors build-type: Simple extra-doc-files: README.md@@ -19,15 +21,16 @@ tested-with: GHC == 8.2.2 GHC == 8.4.4 GHC == 8.6.5- GHC == 8.8.3- GHC == 8.10.1+ GHC == 8.8.4+ GHC == 8.10.5+ GHC == 9.0.1 source-repository head type: git- location: https://github.com/chshersh/type-errors-pretty.git+ location: https://github.com/kowainik/type-errors-pretty.git common common-options- build-depends: base >= 4.10.1.0 && < 4.15+ build-depends: base >= 4.10.1.0 && < 4.16 ghc-options: -Wall -Wcompat@@ -71,7 +74,7 @@ hs-source-dirs: test main-is: Doctest.hs - build-depends: doctest ^>= 0.16+ build-depends: doctest >= 0.16 && < 0.19 , Glob ghc-options: -threaded