forked from ulidtko/cabal-doctest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ulidtko#56 from phadej/prepare-1.0.8
Bump version to 1.0.8
- Loading branch information
Showing
7 changed files
with
153 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
steps: | ||
- simple_align: | ||
cases: false | ||
top_level_patterns: false | ||
records: false | ||
- imports: | ||
align: group | ||
list_align: new_line | ||
long_list_align: new_line | ||
empty_list_align: right_after | ||
list_padding: module_name | ||
separate_lists: true | ||
|
||
- language_pragmas: | ||
style: vertical | ||
align: true | ||
remove_redundant: true | ||
- trailing_whitespace: {} | ||
columns: 80 | ||
newline: lf | ||
language_extensions: | ||
- MultiParamTypeClasses | ||
- FlexibleContexts | ||
- ExplicitForAll | ||
- TemplateHaskell | ||
- QuasiQuotes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,46 @@ | ||
name: cabal-doctest | ||
version: 1.0.7 | ||
synopsis: A Setup.hs helper for doctests running | ||
name: cabal-doctest | ||
version: 1.0.8 | ||
synopsis: A Setup.hs helper for doctests running | ||
description: | ||
Currently (beginning of 2017), there isn't @cabal doctest@ | ||
command. Yet, to properly work doctest needs plenty of configuration. | ||
This library provides the common bits for writing custom Setup.hs | ||
|
||
See <https://github.com/haskell/cabal/issues/2327 Cabal/2327> for the progress | ||
of @cabal doctest@, i.e. whether this library is obsolete. | ||
|
||
homepage: https://github.com/phadej/cabal-doctest | ||
license: BSD3 | ||
license-file: LICENSE | ||
author: Oleg Grenrus <[email protected]> | ||
maintainer: Oleg Grenrus <[email protected]> | ||
copyright: (c) 2017 Oleg Grenrus | ||
category: Distribution | ||
build-type: Simple | ||
cabal-version: >=1.10 | ||
extra-source-files: ChangeLog.md README.md | ||
tested-with: | ||
GHC==7.0.4, | ||
GHC==7.2.2, | ||
GHC==7.4.2, | ||
GHC==7.6.3, | ||
GHC==7.8.4, | ||
GHC==7.10.3, | ||
GHC==8.0.2, | ||
GHC==8.2.2, | ||
GHC==8.4.4, | ||
GHC==8.6.5, | ||
GHC==8.8.1 | ||
homepage: https://github.com/phadej/cabal-doctest | ||
license: BSD3 | ||
license-file: LICENSE | ||
author: Oleg Grenrus <[email protected]> | ||
maintainer: Oleg Grenrus <[email protected]> | ||
copyright: (c) 2017 Oleg Grenrus | ||
category: Distribution | ||
build-type: Simple | ||
cabal-version: >=1.10 | ||
extra-source-files: | ||
ChangeLog.md | ||
README.md | ||
|
||
tested-with: GHC ==8.8.1 || >=7.4 && <8.8 || ==7.2.2 || ==7.0.4 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/phadej/cabal-doctest | ||
|
||
library | ||
exposed-modules: Distribution.Extra.Doctest | ||
exposed-modules: Distribution.Extra.Doctest | ||
other-modules: | ||
other-extensions: | ||
build-depends: | ||
base >=4.3 && <4.14, | ||
Cabal >= 1.10 && <3.1, | ||
filepath, | ||
directory | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
if !impl(ghc >= 7.2) | ||
base >=4.3 && <4.14 | ||
, Cabal >=1.10 && <3.1 | ||
, directory | ||
, filepath | ||
|
||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
|
||
if !impl(ghc >=7.2) | ||
-- Work around a pattern-match coverage checking bug in GHC 7.0 | ||
ghc-options: -fno-warn-overlapping-patterns | ||
ghc-options: -fno-warn-overlapping-patterns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ maintainer: Oleg Grenrus <[email protected]> | |
copyright: (c) 2017 Oleg Grenrus | ||
category: Example | ||
build-type: Custom | ||
tested-with: GHC ==8.8.1 || ==8.6.5 || ==8.4.4 || ==8.2.2 || ==8.0.2 || ==7.10.3 | ||
tested-with: GHC >=7.10 && <8.8 || ==8.8.1 | ||
|
||
custom-setup | ||
setup-depends: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.