Skip to content

Commit

Permalink
Bump versions (#4991)
Browse files Browse the repository at this point in the history
  • Loading branch information
crocodile-dentist authored Oct 16, 2024
1 parent e606615 commit bd6ca84
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 22 deletions.
10 changes: 9 additions & 1 deletion cardano-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@

### Breaking changes

* Reimplemntation of `subscribe` without relaying on non-p2p stack. Its
* Reimplementation of `subscribe` without relaying on non-p2p stack. Its
arguments have changed. Note that the `NodeToClientProtocols` and
`OuroborosApplicationWithMinimalCtx` specify `Void` as return type of the
responder side.
* The default reconnect delay was increased from `0.025s` to `5s`.

### Non-breaking changes

## 0.3.1.6 -- 2024-10-11

### Breaking changes

### Non-breaking changes

* bump for version bounds

## 0.3.1.5 -- 2024-08-27

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions cardano-client/cardano-client.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: cardano-client
version: 0.3.1.5
version: 0.3.1.6
synopsis: An API for ouroboros-network
description: An API for ouroboros-network.
license: Apache-2.0
Expand Down Expand Up @@ -28,7 +28,7 @@ library
contra-tracer,
network-mux ^>=0.4.5,
ouroboros-network >=0.9 && <0.18,
ouroboros-network-api >=0.5.2 && <0.10,
ouroboros-network-api >=0.5.2 && <0.11,
ouroboros-network-framework >=0.8 && <0.14,
si-timers,

Expand Down
6 changes: 6 additions & 0 deletions cardano-ping/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

### Breaking changes

### Non-breaking changes

## 0.5.0.0 -- 2024-10-11

### Breaking changes

* Added `NodeToClientVersionV18`
* Added `NodeToNodeVersion14`

Expand Down
2 changes: 1 addition & 1 deletion cardano-ping/cardano-ping.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: cardano-ping
version: 0.4.0.2
version: 0.5.0.0
synopsis: Utility for pinging cardano nodes
description: Utility for pinging cardano nodes.
license: Apache-2.0
Expand Down
21 changes: 14 additions & 7 deletions ouroboros-network-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,7 @@
* Renamed:
* `accBigPoolStake` -> `accumulateBigLedgerStake`
and `reRelativeStake` -> `recomputeRelativeStake`
* Added `NodeToClientVersionV18`
* Using `typed-protocols-0.3.0.0`.
* Removed `NodeToNodeV_12` and older as these are unable
to cross the hard fork boundary.
* Removed `WhetherReceivingTentativeBlocks` used to
distinguish whether a node version is pipelining-enabled,
used in older `NodeToNodeVersion`
* Added NodeToNodeV_14 to identify nodes supporting Chang+1 HF

### Non-breaking changes

Expand All @@ -27,6 +20,20 @@
the minimum number of active big ledger peers needed to signal
trusted state when finishing syncing in Genesis mode.

## 0.10.0.0 -- 2024-10-11

### Breaking changes

* Removed `NodeToNodeV_12` and older as these are unable
to cross the hard fork boundary.
* Removed `WhetherReceivingTentativeBlocks` used to
distinguish whether a node version is pipelining-enabled,
used in older `NodeToNodeVersion`
* Added `NodeToNodeV_14` to identify nodes supporting Chang+1 HF
* Added `NodeToClientV_18`

### Non-breaking changes

## 0.9.0.1 -- 2024-08-27

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion ouroboros-network-api/ouroboros-network-api.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-network-api
version: 0.9.0.1
version: 0.10.0.0
synopsis: A networking api shared with ouroboros-consensus
description: A networking api shared with ouroboros-consensus.
license: Apache-2.0
Expand Down
10 changes: 9 additions & 1 deletion ouroboros-network-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Breaking changes

* Added `createConnectedBufferedChannelsUnbounded`.
* Use `typed-protocols-0.2.0.0`.
* Use `typed-protocols-0.3.0.0`.
* Removed `Ouroboros.Network.Mux.toApplication`
* Renamed `Ouroboros.Network.Mux.mkMiniProtocolBundle` as `mkMiniProtocolInfos`
(its type has changed).
Expand All @@ -21,6 +21,14 @@

* Added tracing on CM connVars for testing purposes.

## 0.13.2.5 -- 2024-10-11

### Breaking changes

### Non-breaking changes

* bump for version bounds

## 0.13.2.4 -- 2024-08-27

### Non-breaking changes
Expand Down
4 changes: 2 additions & 2 deletions ouroboros-network-framework/ouroboros-network-framework.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-network-framework
version: 0.13.2.4
version: 0.13.2.5
synopsis: Ouroboros network framework
description: Ouroboros network framework.
license: Apache-2.0
Expand Down Expand Up @@ -89,7 +89,7 @@ library
network-mux ^>=0.4.5,
nothunks,
nothunks ^>=0.1.4 || ^>=0.2,
ouroboros-network-api ^>=0.9.0,
ouroboros-network-api ^>=0.10.0,
ouroboros-network-testing,
psqueues,
quiet,
Expand Down
9 changes: 8 additions & 1 deletion ouroboros-network-protocols/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@

### Breaking changes

* Adapt the `versionNumber` cddl definition to account for `NodeToClientVersionV18`.
* Use `typed-protocols-0.3.0.0`.

### Non-breaking changes

## 0.11.0.0 -- 2024-10-11

### Breaking changes

* Adapt the `versionNumber` cddl definition to account for `NodeToClientV_18`.

## 0.10.0.2 -- 2024-08-27

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions ouroboros-network-protocols/ouroboros-network-protocols.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-network-protocols
version: 0.10.0.2
version: 0.11.0.0
synopsis: Ouroboros Network Protocols
description: Ouroboros Network Protocols.
license: Apache-2.0
Expand Down Expand Up @@ -103,7 +103,7 @@ library
deepseq,
io-classes ^>=1.5.0,
nothunks,
ouroboros-network-api ^>=0.9.0,
ouroboros-network-api ^>=0.10,
quiet,
serialise,
si-timers,
Expand Down
8 changes: 8 additions & 0 deletions ouroboros-network/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@
module. Previously these were hard coded in node.
* Updated tests for `network-mux` changes.

## 0.17.1.2 -- 2024-10-11

### Breaking changes

### Non-breaking changes

* bump for version bounds

## 0.17.1.1 -- 2024-08-27

### Breaking changes
Expand Down
8 changes: 4 additions & 4 deletions ouroboros-network/ouroboros-network.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-network
version: 0.17.1.1
version: 0.17.1.2
synopsis: A networking layer for the Ouroboros blockchain protocol
description: A networking layer for the Ouroboros blockchain protocol.
license: Apache-2.0
Expand Down Expand Up @@ -161,9 +161,9 @@ library
network ^>=3.1.4,
network-mux,
nothunks,
ouroboros-network-api ^>=0.9.0,
ouroboros-network-framework ^>=0.13.2.2,
ouroboros-network-protocols ^>=0.10,
ouroboros-network-api ^>=0.10.0,
ouroboros-network-framework ^>=0.13.2.5,
ouroboros-network-protocols ^>=0.11,
psqueues >=0.2.3 && <0.3,
random,
si-timers,
Expand Down

0 comments on commit bd6ca84

Please sign in to comment.