Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion typed-protocols-cborg/typed-protocols-cborg.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ library
bytestring >=0.10 && <0.13,
cborg >=0.2.1 && <0.3,

io-classes,
io-classes ^>=1.5,
typed-protocols

hs-source-dirs: src
Expand Down
8 changes: 5 additions & 3 deletions typed-protocols-examples/typed-protocols-examples.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: typed-protocols-examples
version: 0.2.0.3
version: 0.2.0.2
synopsis: Examples and tests for the typed-protocols framework
-- description:
license: Apache-2.0
Expand Down Expand Up @@ -48,7 +48,8 @@ library
cborg,
serialise,
contra-tracer,
io-classes:{io-classes,si-timers},
io-classes,
si-timers,
time,
typed-protocols,
typed-protocols-cborg
Expand Down Expand Up @@ -76,8 +77,9 @@ test-suite test
, typed-protocols
, typed-protocols-cborg
, typed-protocols-examples
, io-classes:{io-classes,si-timers}
, io-classes
, io-sim
, si-timers
, QuickCheck
, tasty
, tasty-quickcheck
Expand Down
18 changes: 4 additions & 14 deletions typed-protocols/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
# Revision history for typed-protocols-cborg
# Revision history for typed-protocols

## 0.1.1.1

* Use `io-classes-1.6`

## 0.1.0.7 -- 2023-10-20

* Improved performance of `prop_codecs_splitsM` and `prop_codecs_compatM`.

## 0.1.0.5 -- 2023-03-08

* Support `ghc-9.6.1`.
* Use `io-classes-1.1.0.0`.


* unbuildable (with `base < 0` constraint in CHaP); We cannot support
`io-classes-1.{6,7}` until `Haskell.Nix` support for public sublibraries is
merged.
4 changes: 2 additions & 2 deletions typed-protocols/typed-protocols.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: typed-protocols
version: 0.1.1.1
version: 0.1.1.0
synopsis: A framework for strongly typed protocols
-- description:
license: Apache-2.0
Expand Down Expand Up @@ -32,7 +32,7 @@ library
, TypeOperators
, BangPatterns
build-depends: base,
io-classes ^>= 1.7
io-classes >= 1.0 && < 1.6

hs-source-dirs: src
default-language: Haskell2010
Expand Down
Loading