Skip to content

Commit f3277f6

Browse files
authored
Merge pull request #56 from input-output-hk/coot/drop-io-classes-1.6
coot/drop io classes 1.6
2 parents 33f29f8 + 97f83ac commit f3277f6

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed

typed-protocols-cborg/typed-protocols-cborg.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ library
2222
bytestring >=0.10 && <0.13,
2323
cborg >=0.2.1 && <0.3,
2424

25-
io-classes,
25+
io-classes ^>=1.5,
2626
typed-protocols
2727

2828
hs-source-dirs: src

typed-protocols-examples/typed-protocols-examples.cabal

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: typed-protocols-examples
3-
version: 0.2.0.3
3+
version: 0.2.0.2
44
synopsis: Examples and tests for the typed-protocols framework
55
-- description:
66
license: Apache-2.0
@@ -48,7 +48,8 @@ library
4848
cborg,
4949
serialise,
5050
contra-tracer,
51-
io-classes:{io-classes,si-timers},
51+
io-classes,
52+
si-timers,
5253
time,
5354
typed-protocols,
5455
typed-protocols-cborg
@@ -76,8 +77,9 @@ test-suite test
7677
, typed-protocols
7778
, typed-protocols-cborg
7879
, typed-protocols-examples
79-
, io-classes:{io-classes,si-timers}
80+
, io-classes
8081
, io-sim
82+
, si-timers
8183
, QuickCheck
8284
, tasty
8385
, tasty-quickcheck

typed-protocols/CHANGELOG.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
1-
# Revision history for typed-protocols-cborg
1+
# Revision history for typed-protocols
22

33
## 0.1.1.1
4-
5-
* Use `io-classes-1.6`
6-
7-
## 0.1.0.7 -- 2023-10-20
8-
9-
* Improved performance of `prop_codecs_splitsM` and `prop_codecs_compatM`.
10-
11-
## 0.1.0.5 -- 2023-03-08
12-
13-
* Support `ghc-9.6.1`.
14-
* Use `io-classes-1.1.0.0`.
15-
16-
4+
* unbuildable (with `base < 0` constraint in CHaP); We cannot support
5+
`io-classes-1.{6,7}` until `Haskell.Nix` support for public sublibraries is
6+
merged.

typed-protocols/typed-protocols.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: typed-protocols
3-
version: 0.1.1.1
3+
version: 0.1.1.0
44
synopsis: A framework for strongly typed protocols
55
-- description:
66
license: Apache-2.0
@@ -32,7 +32,7 @@ library
3232
, TypeOperators
3333
, BangPatterns
3434
build-depends: base,
35-
io-classes ^>= 1.7
35+
io-classes >= 1.0 && < 1.6
3636

3737
hs-source-dirs: src
3838
default-language: Haskell2010

0 commit comments

Comments
 (0)