Skip to content

Commit ff0b0a3

Browse files
committed
Fix compilation of GHC 8.8
1 parent 6d261af commit ff0b0a3

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Package Versioning Policy](https://wiki.haskell.org/Package_versioning_policy).
4+
## [2.7.0.0] - 2020-02-08
5+
6+
### Fixed
7+
- Upgraded bson to compile with GHC 8.8
8+
49
## [2.6.0.1] - 2020-02-01
510

6-
## Fixed
11+
### Fixed
712
- Parsing hostname with underscores in readHostPortM.
813

914
## [2.6.0.0] - 2020-01-03
1015

11-
## Added
16+
### Added
1217
- MonadFail. It's a standard for newer versions of Haskell,
1318
- Open replica sets over tls.
1419

15-
## Fixed
20+
### Fixed
1621
- Support for unix domain socket connection,
1722
- Stubborn listener threads.
1823

mongoDB.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: mongoDB
2-
Version: 2.6.0.1
2+
Version: 2.7.0.0
33
Synopsis: Driver (client) for MongoDB, a free, scalable, fast, document
44
DBMS
55
Description: This package lets you connect to MongoDB servers and
@@ -31,7 +31,7 @@ Library
3131
Build-depends: array -any
3232
, base <5
3333
, binary -any
34-
, bson >= 0.3 && < 0.4
34+
, bson >= 0.3 && < 0.5
3535
, text
3636
, bytestring -any
3737
, containers -any
@@ -114,7 +114,7 @@ Benchmark bench
114114
, base64-bytestring
115115
, base16-bytestring
116116
, binary -any
117-
, bson >= 0.3 && < 0.4
117+
, bson >= 0.3 && < 0.5
118118
, data-default-class -any
119119
, text
120120
, bytestring -any

0 commit comments

Comments
 (0)