Skip to content

Commit

Permalink
Prepare release 0.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturGajowy committed Jun 12, 2020
1 parent 3c6d0bb commit 6aa1ec3
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 22 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog for ghc-clippy-plugin

## 0.0.0.1

Initial release:
- allows overriding warning and error messages emitted by ghc
- works with stack and ghcid
- configured using ./.clippy.dhall
19 changes: 10 additions & 9 deletions ghc-clippy-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ cabal-version: 1.12
--
-- see: https://github.com/sol/hpack
--
-- hash: 9155e1e934c23c2eb79b8a4d1cdaa5168851344dad2434243f59c661368f6b3d
-- hash: ecc0ca90c321825f155dc23884f20f462b01edc11978e490cca555c329e8fde5

name: ghc-clippy-plugin
version: 0.0.0.1
synopsis: Override ghc error messages to make them more helpful
description: Please see the README on GitHub at <https://github.com/githubuser/ghc-clippy-plugin#readme>
category: Tools
synopsis: Override GHC error messages to the user's liking
description: Please see the README on GitHub at <https://github.com/ArturGajowy/ghc-clippy-plugin#readme>
category: Development, Compiler Plugin
homepage: https://github.com/ArturGajowy/ghc-clippy-plugin#readme
bug-reports: https://github.com/ArturGajowy/ghc-clippy-plugin/issues
author: Artur Gajowy
Expand All @@ -21,6 +21,7 @@ license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md

source-repository head
type: git
Expand All @@ -36,9 +37,9 @@ library
ghc-options: -fobject-code -Wall
build-depends:
base >=4.7 && <5
, dhall
, ghc
, text
, text-icu
, text-regex-replace
, dhall >=1.30.0 && <1.33
, ghc >=8.8.2 && <8.11
, text >=1.2.3.2 && <1.3
, text-icu >=0.7.0 && <0.8
, text-regex-replace >=0.1.1 && <0.2
default-language: Haskell2010
23 changes: 10 additions & 13 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,20 @@ copyright: "2020 Artur Gajowy"

extra-source-files:
- README.md
- ChangeLog.md

# Metadata used when publishing your package
synopsis: Override ghc error messages to make them more helpful
category: Tools
synopsis: Override GHC error messages to the user's liking
category: Development, Compiler Plugin

# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/githubuser/ghc-clippy-plugin#readme>
description: Please see the README on GitHub at <https://github.com/ArturGajowy/ghc-clippy-plugin#readme>

dependencies:
- base >= 4.7 && < 5
- ghc
- text
- text-icu
- text-regex-replace
- dhall
- base >= 4.7 && < 5
- ghc >= 8.8.2 && < 8.11
- text >= 1.2.3.2 && < 1.3
- text-icu >= 0.7.0 && < 0.8
- text-regex-replace >= 0.1.1 && < 0.2
- dhall >= 1.30.0 && < 1.33

library:
source-dirs: src
Expand Down

0 comments on commit 6aa1ec3

Please sign in to comment.