Skip to content

Commit

Permalink
Merge pull request #4712 from input-output-hk/coot/release
Browse files Browse the repository at this point in the history
New CHaP release
  • Loading branch information
coot authored Nov 2, 2023
2 parents 4090a0c + 4cbbcc7 commit bb6958e
Show file tree
Hide file tree
Showing 20 changed files with 72 additions and 23 deletions.
6 changes: 6 additions & 0 deletions cardano-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

### Non-breaking changes

## 0.3.0.2

### Non-breaking changes

* Updated package bounds.

## 0.3.0.1 -- 2023-10-26

### Non-breaking changes
Expand Down
8 changes: 4 additions & 4 deletions cardano-client/cardano-client.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: cardano-client
version: 0.3.0.1
version: 0.3.0.2
synopsis: An API for ouroboros-network
description: An API for ouroboros-network.
license: Apache-2.0
Expand All @@ -21,10 +21,10 @@ library
build-depends: base >=4.14 && <4.19,
bytestring >=0.10 && <0.12,
containers,
ouroboros-network-api ^>= 0.5.1,
ouroboros-network ^>= 0.9,
ouroboros-network-api >= 0.5.2 && < 0.7,
ouroboros-network >= 0.9 && < 0.11,
ouroboros-network-framework >= 0.8 && < 0.11,
network-mux ^>= 0.4,
network-mux ^>= 0.4.2,

ghc-options: -Wall
-Wno-unticked-promoted-constructors
Expand Down
2 changes: 1 addition & 1 deletion cardano-ping/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Revision history for cardano-ping

## next version
## 0.2.0.8 -- 2023-11-02

### Breaking changes

Expand Down
4 changes: 2 additions & 2 deletions 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.2.0.7
version: 0.2.0.8
synopsis: Utility for pinging cardano nodes
description: Utility for pinging cardano nodes.
license: Apache-2.0
Expand Down Expand Up @@ -32,7 +32,7 @@ library
si-timers ^>=1.2,
strict-stm,

network-mux ^>=0.4,
network-mux ^>=0.4.2,
tdigest ^>=0.3,
text >=1.2.4 && <2.1,
transformers >=0.5 && <0.7,
Expand Down
6 changes: 6 additions & 0 deletions monoidal-synchronisation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Revision history for monoidal-synchronisation

## 0.1.0.4

### Non-breaking changes

* Fixed cabal-fmt warnings.

## 0.1.0.3

### Non-breaking changes
Expand Down
2 changes: 1 addition & 1 deletion monoidal-synchronisation/monoidal-synchronisation.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: monoidal-synchronisation
version: 0.1.0.3
version: 0.1.0.4
synopsis: Monoidal synchronisation
description: Monoidal synchronisation.
license: Apache-2.0
Expand Down
6 changes: 5 additions & 1 deletion network-mux/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Non-breaking changes

## 0.4.1.0
## 0.4.2.0

### Breaking

Expand All @@ -18,6 +18,10 @@
* Restructured `setupDispatchTable` to prevent an impossible case and eliminate
the associated error.

## 0.4.1.0

* Use `io-classes-1.2`

## 0.4.0.0 -- 2023-04-28

### Breaking
Expand Down
2 changes: 1 addition & 1 deletion network-mux/network-mux.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: network-mux
version: 0.4.1.0
version: 0.4.2.0
synopsis: Multiplexing library
description: Multiplexing library.
license: Apache-2.0
Expand Down
4 changes: 4 additions & 0 deletions ntp-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

### Non-breaking changes

## 0.0.1.3 -- 2023-11-02

### Non-breaking changes

* Created a new `CompletedNtpStatus` to represent the subset of `NtpStatus`
produced by `ntpQuery` and used it to eliminate an impossible case in
`ntpClientThread` and its associated error.
Expand Down
2 changes: 1 addition & 1 deletion ntp-client/ntp-client.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: ntp-client
version: 0.0.1.2
version: 0.0.1.3
synopsis: NTP client
description: NTP client.
license: Apache-2.0
Expand Down
6 changes: 6 additions & 0 deletions ouroboros-network-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

### Breaking changes

### Non-breaking changes

## 0.6.0.0 -- 2023-11-02

### Breaking changes

* Remove `PeerSharingPrivate` option from the `PeerSharing` data type.
* Rename `NoPeerSharing` and `PeerSharingPublic` to `PeerSharingDisabled` and
`PeerSharingEnabled`, respectively.
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.5.1.1
version: 0.6.0.0
synopsis: A networking api shared with ouroboros-consensus
description: A networking api shared with ouroboros-consensus.
license: Apache-2.0
Expand Down
7 changes: 6 additions & 1 deletion ouroboros-network-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@

### Non-breaking changes

* Update code to accommodate changes on `PeerSharing` data type.
## 0.10.0.01 -- 2023-11-02

### Non-breaking changes

* Updated code to accommodate changes on `PeerSharing` data type.
* Updated version bounds.

## 0.10.0.0 -- 2023-10-26

Expand Down
6 changes: 3 additions & 3 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.10.0.0
version: 0.10.0.1
synopsis: Ouroboros network framework
description: Ouroboros network framework.
license: Apache-2.0
Expand Down Expand Up @@ -98,9 +98,9 @@ library
, monoidal-synchronisation
^>=0.1.0.3
, network >=3.1.2.2 && < 3.2
, network-mux ^>=0.4.1
, network-mux ^>=0.4.2
, ouroboros-network-api
^>=0.5.1.1
^>=0.6
, ouroboros-network-testing
, typed-protocols ^>=0.1.1
, typed-protocols-cborg
Expand Down
6 changes: 5 additions & 1 deletion ouroboros-network-mock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Revision history for ouroboros-network-mock

## next
## next release

### Breaking changes

### Non-breaking changes

## 0.1.1.0 -- 2023-11-02

### Non-breaking changes

* Clarified `successorBlock`'s contract (specifying that behavior is undefined
when the provided point isn't on the provided chain) and leveraged it to
prevent a call to `error`.
Expand Down
2 changes: 1 addition & 1 deletion ouroboros-network-mock/ouroboros-network-mock.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: ouroboros-network-mock
version: 0.1.0.2
version: 0.1.1.0
synopsis: Ouroboros Network Chain for testing purposes
description: Ouroboros Network Chain for testing purposes.
license: Apache-2.0
Expand Down
6 changes: 6 additions & 0 deletions ouroboros-network-protocols/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

### Breaking changes

### Non-breaking changes

## 0.6.0.0 -- 2023-11-02

### Breaking changes

* Make chainsync idle timeout configurable.

### Non-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.5.3.0
version: 0.6.0.0
synopsis: Ouroboros Network Protocols
description: Ouroboros Network Protocols.
license: Apache-2.0
Expand Down Expand Up @@ -101,7 +101,7 @@ library
si-timers,

ouroboros-network-api
^>=0.5.1,
^>=0.6,
serialise,
typed-protocols ^>=0.1.1,
typed-protocols-cborg
Expand Down
8 changes: 8 additions & 0 deletions ouroboros-network/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@

### Non-breaking changes

## 0.10.0.0 -- 2023-11-02

### Breaking changes

* Make chainsync idle timeout configurable.

### Non-breaking changes

* Updated types to accommodate `PeerSharing` data type changes.
* Fixed PeerSharing IPv6 enc/decoding
* Introduce NodeToNodeVersion 13
Expand Down
6 changes: 3 additions & 3 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.9.2.0
version: 0.10.0.0
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 @@ -125,9 +125,9 @@ library
io-classes-mtl ^>=0.1,
network-mux,
si-timers,
ouroboros-network-api ^>=0.5.1.1,
ouroboros-network-api ^>=0.6,
ouroboros-network-framework ^>=0.10,
ouroboros-network-protocols ^>=0.5.3.0,
ouroboros-network-protocols ^>=0.6,
strict-stm,
typed-protocols ^>=0.1.1,
if !os(windows)
Expand Down

0 comments on commit bb6958e

Please sign in to comment.