Skip to content

Commit

Permalink
Fix stackage#4312: Relax network bounds.
Browse files Browse the repository at this point in the history
See stackage issue: commercialhaskell/stackage#4312

Tested network-3.0.0.0 compat using the following `stack.yaml`

```yaml
resolver: lts-13.4
packages:
  - .
extra-deps:
- network-3.0.0.0
# - network-2.6.3.6
- tcp-streams-1.0.1.1
- git: [email protected]:naushadh/io-streams.git
  commit: 8ebb795b86e20d60ba6fdbbb25c3cb1ef90b2d98
```
  • Loading branch information
naushadh committed Jan 24, 2019
1 parent 5a77c84 commit d0c20a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for mysql-haskell

## 0.8.4.2 -- 2019-01-22

* Fix [stackage#4312](https://github.com/commercialhaskell/stackage/issues/4312): Relax `network` bounds.

## 0.8.4.1 -- 2018-10-23

* Relax `tasty` version bound to build with latest stackage. [#26](https://github.com/winterland1989/mysql-haskell/pull/26)
Expand Down
4 changes: 2 additions & 2 deletions mysql-haskell.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mysql-haskell
version: 0.8.4.1
version: 0.8.4.2
synopsis: pure haskell MySQL driver
description: pure haskell MySQL driver
license: BSD3
Expand Down Expand Up @@ -35,7 +35,7 @@ library
other-modules: Database.MySQL.Query
build-depends: base >= 4.7 && < 5
, monad-loops == 0.4.*
, network >= 2.3 && < 3.0
, network >= 2.3 && < 4.0
, io-streams >= 1.2 && < 2.0
, tcp-streams >= 1.0 && < 1.1
, wire-streams >= 0.1
Expand Down

0 comments on commit d0c20a1

Please sign in to comment.