Skip to content

Commit 5701d97

Browse files
committed
Bumped versions
1 parent fbf2875 commit 5701d97

File tree

22 files changed

+1588
-27
lines changed

22 files changed

+1588
-27
lines changed

cardano-client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Non-breaking changes
88

9+
## 0.6.1.0 -- 2025-09-10
10+
11+
* Support `ouroboros-network-0.22`
12+
913
## 0.6.0.0 -- 2025-06-28
1014

1115
### Breaking changes

cardano-client/cardano-client.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: cardano-client
3-
version: 0.6.0.0
3+
version: 0.6.1.0
44
synopsis: An API for ouroboros-network
55
description: An API for ouroboros-network.
66
license: Apache-2.0
@@ -28,9 +28,9 @@ library
2828
contra-tracer >=0.1 && <0.3,
2929
io-classes:si-timers ^>=1.8.0.1,
3030
network-mux ^>=0.9,
31-
ouroboros-network:cardano-diffusion ^>=0.22,
32-
ouroboros-network-api ^>=0.16,
33-
ouroboros-network-framework ^>=0.19,
31+
ouroboros-network:cardano-diffusion ^>=0.23,
32+
ouroboros-network-api ^>=0.17,
33+
ouroboros-network-framework ^>=0.20,
3434

3535
ghc-options:
3636
-Wall

dmq-node/dmq-node.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ library
9494
iproute ^>=1.7.15,
9595
kes-agent-crypto ^>=0.1,
9696
network ^>=3.2.7,
97-
network-mux ^>=0.9,
97+
network-mux ^>=0.9.1,
9898
optparse-applicative ^>=0.18,
99-
ouroboros-network:{ouroboros-network, orphan-instances} ^>=0.22,
100-
ouroboros-network-api ^>=0.16,
101-
ouroboros-network-framework ^>=0.19,
102-
ouroboros-network-protocols ^>=0.15,
99+
ouroboros-network:{ouroboros-network, orphan-instances} ^>=0.23,
100+
ouroboros-network-api ^>=0.17,
101+
ouroboros-network-framework ^>=0.20,
102+
ouroboros-network-protocols ^>=0.16,
103103
random ^>=1.2,
104104
singletons,
105105
text >=1.2.4 && <2.2,

network-mux/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Non-breaking changes
88

9+
## 0.9.1.0 -- 2025-09-10
10+
11+
### Non-breaking changes
12+
913
* Exposed `MakeBearerCb` to expose its haddocks.
1014

1115
## 0.9.0.0 -- 2025-06-28

network-mux/network-mux.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: network-mux
3-
version: 0.9.0.0
3+
version: 0.9.1.0
44
synopsis: Multiplexing library
55
description: Multiplexing library.
66
license: Apache-2.0

ouroboros-network-api/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
### Breaking changes
66

7+
## 0.17.0.0 -- 2025-09-10
8+
9+
### Breaking changes
10+
711
* Simplify type of `headerForgeUTCTime` in `BlockFetchConsensusInterface`, and
812
remove the supporting type `FromConsensus`.
913
* Changed `BlockFetchConsensusInterface` to support dynamic (weighted) chain

ouroboros-network-api/ouroboros-network-api.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: ouroboros-network-api
3-
version: 0.16.0.0
3+
version: 0.17.0.0
44
synopsis: A networking api shared with ouroboros-consensus
55
description: A networking api shared with ouroboros-consensus.
66
license: Apache-2.0

ouroboros-network-framework/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@
44

55
### Breaking changes
66

7+
### Non-breaking changes
8+
9+
## 0.20.0.0 -- 10.09.2025
10+
11+
### Breaking changes
12+
713
* `HandleError` renamed as `HandlerError`, also `HandlerErrorType` and `classifyHandlerError`.
814

915
### Non-breaking changes
1016

1117
* propagate diconnection reason out of connection manager when including an
1218
inbound connection or acquiring an outbound connection.
19+
* added `runAnnotatedConnectedPeers`.
1320

1421
## 0.19.0.0 -- 28.06.2025
1522

ouroboros-network-framework/ouroboros-network-framework.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: ouroboros-network-framework
3-
version: 0.19.0.0
3+
version: 0.20.0.0
44
synopsis: Ouroboros network framework
55
description: Ouroboros network framework.
66
license: Apache-2.0
@@ -76,10 +76,10 @@ library
7676
io-classes:{io-classes, si-timers, strict-stm} ^>=1.8.0.1,
7777
monoidal-synchronisation ^>=0.1.0.6,
7878
network ^>=3.2.7,
79-
network-mux ^>=0.9,
79+
network-mux ^>=0.9.1,
8080
nothunks,
8181
nothunks ^>=0.1.4 || ^>=0.2,
82-
ouroboros-network-api ^>=0.16,
82+
ouroboros-network-api ^>=0.17,
8383
ouroboros-network-testing,
8484
psqueues,
8585
quiet,

ouroboros-network-protocols/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,22 @@
44

55
### Breaking changes
66

7+
## 0.16.0.0 -- 2025-09-10
8+
9+
### Breaking changes
10+
11+
* Generalised `CoolectPipelined` constructor for `TxSubmission2.Server` to allow
12+
running a monadic action in the continuation when no message is available.
13+
* `SendMsgRequestTxsPipelined` constructor for `TxSubmission2.Server` was modified:
14+
now it takes a mpa of txids to sizes instead of a list of txids.
15+
716
### Non-breaking changes
817

18+
* Added annoteded codec for `TxSubmission2` mini-protocol.
19+
* Added annoteded codec for `LocalTxSubmission` mini-protocol.
20+
* Added `Ouroboros.Network.Protocols.Codec.Utils` module with utility function
21+
for writing annotated codecs.
22+
923
## 0.15.0.0 -- 28.06.2025
1024

1125
### Breaking changes

0 commit comments

Comments
 (0)