mr / ftp-client

Haskell FTP client
7 stars 15 forks source link

network version bounds #20

Closed yokodake closed 4 years ago

yokodake commented 4 years ago

Any reason why the network dependency has an < 2.9 upper bound? I just tried to build ftp-client with network-3.1.1.1 and it both compiles and passes the tests.

DanBurton commented 4 years ago

Bump; I got passing build & tests when run like so (roughly simulating stackage build server):

stack unpack ftp-client-0.5.1.3 && cd ftp-client-0.5.1.3
# edit ftp-client.cabal, remove constraint on network
echo 'resolver: nightly-2020-04-16' > stack.yaml
stack build --test --bench --no-run-benchmarks --fast

So this could be handled by a hackage revision if you like.

mr commented 4 years ago

Updated the package. Should be available on hackage now.

DanBurton commented 4 years ago

Thank you!

yokodake commented 4 years ago

thx