1
1
mirror of https://github.com/gelisam/hawk.git synced 2024-12-11 09:54:51 +03:00

Merge pull request #208 from gelisam/issue-195

fix #195
This commit is contained in:
Samuel Gélineau 2018-12-02 21:29:19 -05:00 committed by GitHub
commit 7213655289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 22 deletions

View File

@ -36,7 +36,7 @@ env:
# if this build fails and you need to bump the lts, remember
# to also bump the lower bounds in package.yaml to match the
# versions provided by that new lts!
- BUILD=stack RESOLVER="lts-7.0"
- BUILD=stack RESOLVER="lts-8.0"
- BUILD=stack RESOLVER="lts-12.19"
- BUILD=cabal RESOLVER="lts-12.19"

6
bump-lower-bounds.vim Normal file
View File

@ -0,0 +1,6 @@
"for future reference, here is a vim macro which, when the cursos is on a line like
"
" - haskell-src-exts >= 1.0
"
"will update the lower bound to match the version used by the current lts.
0dwdwEld$A '^isa€kbtack ls dependencies --test | grep '^V:!bash Wi>= 0i - j

View File

@ -17,7 +17,7 @@ extra-source-files:
ghc-options: -Wall
dependencies:
- base >= 4.9.0.0
- base >= 4.9.1.0
- bytestring >= 0.10.8.1
- containers >= 0.5.7.1
- stringsearch >= 0.3.6.6
@ -30,23 +30,22 @@ executables:
hawk:
main: Main.hs
dependencies:
- directory >= 1.2.6.2
- directory >= 1.3.0.0
- exceptions >= 0.8.3
- extra >= 1.4.10
- extra >= 1.5.1
- filelock >= 0.1.0.1
- filepath >= 1.4.1.0
- filepath >= 1.4.1.1
- haskell-awk
- haskell-src-exts >= 1.20.3
- haskell-src-exts >= 1.18.2
- hint >= 0.6.0
- mtl >= 2.2.1
- network >= 2.6.3.1
- process >= 1.4.2.0
- template-haskell >= 2.11.0.0
- process >= 1.4.3.0
- template-haskell >= 2.11.1.0
- time >= 1.6.0.1
- transformers >= 0.5.2.0
source-dirs: src
# TODO: set the lower bounds to the lts-7.0 versions
tests:
reference:
source-dirs:
@ -54,23 +53,23 @@ tests:
- tests
main: RunTests.hs
dependencies:
- aeson >= 0.11.2.1
- directory >= 1.2.6.2
- doctest >= 0.11.0
- aeson >= 1.0.2.1
- directory >= 1.3.0.0
- doctest >= 0.11.1
- easy-file >= 0.2.1
- exceptions >= 0.8.3
- extra >= 1.4.10
- extra >= 1.5.1
- filelock >= 0.1.0.1
- filepath >= 1.4.1.0
- filepath >= 1.4.1.1
- haskell-awk
- haskell-src-exts >= 1.20.3
- haskell-src-exts >= 1.18.2
- hint >= 0.6.0
- hspec >= 2.2.3
- HUnit >= 1.3.1.2
- hspec >= 2.4.1
- HUnit >= 1.5.0.0
- mtl >= 2.2.1
- network >= 2.6.3.1
- process >= 1.4.2.0
- template-haskell >= 2.11.0.0
- process >= 1.4.3.0
- template-haskell >= 2.11.1.0
- temporary >= 1.2.0.4
- test-framework >= 0.8.1.1
- test-framework-hunit >= 0.3.0.2

View File

@ -1,5 +1,4 @@
resolver: lts-12.19
resolver: lts-8.0
packages:
- .
extra-deps:
- haskell-src-exts-1.20.3
extra-deps: []