Skip to content

Commit

Permalink
Explicitly list all dependency version ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
Taylor Fausak committed Nov 4, 2016
1 parent 23e6165 commit f00f82c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ script:
- stack setup
- stack build --ghc-options -O2 --only-dependencies --test
- stack build --ghc-options -O2 --pedantic --test --test-arguments '--pattern 29F5'
- stack sdist --pvp-bounds both
- stack sdist
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ test_script:
- stack setup > nul
- stack build --ghc-options -O2 --only-dependencies --test
- stack build --ghc-options -O2 --pedantic --test
- stack sdist --pvp-bounds both
- stack sdist
version: '{build}'
34 changes: 17 additions & 17 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ description: Rattletrap parses and generates Rocket League replays.
executables:
rattletrap:
dependencies:
- aeson
- aeson-casing
- aeson >=0.11 && <0.12
- aeson-casing >=0.1 && <0.2
- base
- binary
- bytestring
- rattletrap
- template-haskell
- template-haskell >=2.11 && <2.12
ghc-options:
- -rtsopts
- -threaded
Expand All @@ -25,16 +25,16 @@ ghc-options: -Wall
github: tfausak/rattletrap
library:
dependencies:
- base
- bimap
- binary
- binary-bits
- bytestring
- containers
- data-binary-ieee754
- regex-compat
- text
- vector
- base >=4.9 && <4.10
- bimap >=0.3 && <0.4
- binary >=0.8 && <0.9
- binary-bits >=0.5 && <0.6
- bytestring >=0.10 && <0.11
- containers >=0.5 && <0.6
- data-binary-ieee754 >=0.4 && <0.5
- regex-compat >=0.95 && <0.96
- text >=1.2 && <1.3
- vector >=0.11 && <0.12
other-modules: Paths_rattletrap
source-dirs: library
license: MIT
Expand All @@ -46,7 +46,7 @@ tests:
lint:
dependencies:
- base
- hlint
- hlint >=1.9 && <1.10
ghc-options:
- -rtsopts
- -threaded
Expand All @@ -58,10 +58,10 @@ tests:
- base
- binary
- bytestring
- filepath
- filepath >=1.4 && <1.5
- rattletrap
- tasty
- tasty-hspec
- tasty >=0.11 && <0.12
- tasty-hspec >=1.1 && <1.2
ghc-options:
- -rtsopts
- -threaded
Expand Down
2 changes: 1 addition & 1 deletion tools/upload-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ fi

mkdir -p "$HOME/.stack/upload"
echo "{ \"username\": \"$HACKAGE_USERNAME\", \"password\": \"$HACKAGE_PASSWORD\" }" > "$HOME/.stack/upload/credentials.json"
stack upload --pvp-bounds both .
stack upload .

0 comments on commit f00f82c

Please sign in to comment.