Skip to content

Commit

Permalink
Release Consensus packages for Node 8.12 (#1151)
Browse files Browse the repository at this point in the history
| Package | Old version | New version |
| --- | :-: | :-: |
| `ouroboros-consensus` | `0.18.0.0` | `0.19.0.0` |
| `ouroboros-consensus-diffusion` | `0.16.0.0` | `0.17.0.0`|
| `ouroboros-consensus-protocol` | `0.9.0.0` | `0.9.0.1` |
| `ouroboros-consensus-cardano` | `0.16.0.0` | `0.17.0.0` |
  • Loading branch information
amesgen authored Jun 19, 2024
2 parents b128a6e + f4c0208 commit b11fd87
Show file tree
Hide file tree
Showing 19 changed files with 62 additions and 105 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Ouroboros Consensus

[![consensus](https://img.shields.io/badge/ouroboros--consensus-0.18.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-0.18.0.0/)
[![diffusion](https://img.shields.io/badge/ouroboros--consensus--diffusion-0.16.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-diffusion-0.16.0.0/)
[![protocol](https://img.shields.io/badge/ouroboros--consensus--protocol-0.9.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-protocol-0.9.0.0/)
[![cardano](https://img.shields.io/badge/ouroboros--consensus--cardano-0.16.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-cardano-0.16.0.0/)
[![consensus](https://img.shields.io/badge/ouroboros--consensus-0.19.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-0.19.0.0/)
[![diffusion](https://img.shields.io/badge/ouroboros--consensus--diffusion-0.17.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-diffusion-0.17.0.0/)
[![protocol](https://img.shields.io/badge/ouroboros--consensus--protocol-0.9.0.1-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-protocol-0.9.0.1/)
[![cardano](https://img.shields.io/badge/ouroboros--consensus--cardano-0.17.0.0-blue)](https://chap.intersectmbo.org/package/ouroboros-consensus-cardano-0.17.0.0/)
[![sop-extras](https://img.shields.io/badge/sop--extras-0.2.0.0-blue)](https://chap.intersectmbo.org/package/sop-extras-0.2.0.0/)
[![strict-sop-core](https://img.shields.io/badge/strict--sop--core-0.1.1.0-blue)](https://chap.intersectmbo.org/package/strict-sop-core-0.1.1.0/)

Expand Down
9 changes: 9 additions & 0 deletions ouroboros-consensus-cardano/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

# Changelog entries

<a id='changelog-0.17.0.0'></a>
## 0.17.0.0 — 2024-06-19

### Breaking

- Changed `GetStakeDistribution` and `GetPoolDistr` queries to return a
Consensus-vendored version of `PoolDistr` (instead of using the one from
Ledger, as it changed in a backwards-incompatible manner).

<a id='changelog-0.16.0.0'></a>
## 0.16.0.0 — 2024-05-13

Expand Down
Empty file.
Empty file.

This file was deleted.

10 changes: 5 additions & 5 deletions ouroboros-consensus-cardano/ouroboros-consensus-cardano.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-consensus-cardano
version: 0.16.0.0
version: 0.17.0.0
synopsis:
The instantation of the Ouroboros consensus layer used by Cardano

Expand Down Expand Up @@ -157,7 +157,7 @@ library
microlens,
mtl,
nothunks,
ouroboros-consensus ^>=0.18,
ouroboros-consensus ^>=0.19,
ouroboros-consensus-protocol ^>=0.9,
ouroboros-network-api ^>=0.7.3,
serialise ^>=0.2,
Expand Down Expand Up @@ -200,7 +200,7 @@ library unstable-byronspec
containers >=0.5 && <0.7,
mtl,
nothunks,
ouroboros-consensus ^>=0.18,
ouroboros-consensus ^>=0.19,
serialise ^>=0.2,
small-steps,
transformers,
Expand Down Expand Up @@ -546,9 +546,9 @@ library unstable-cardano-tools
mtl,
network,
nothunks,
ouroboros-consensus ^>=0.18,
ouroboros-consensus ^>=0.19,
ouroboros-consensus-cardano,
ouroboros-consensus-diffusion ^>=0.16,
ouroboros-consensus-diffusion ^>=0.17,
ouroboros-consensus-protocol ^>=0.9,
ouroboros-network,
ouroboros-network-api,
Expand Down
11 changes: 11 additions & 0 deletions ouroboros-consensus-diffusion/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

# Changelog entries

<a id='changelog-0.17.0.0'></a>
## 0.17.0.0 — 2024-06-19

### Patch

- Updated dependencies; no local changes required.

### Breaking

- Implemented a first version of CSJ (ChainSync Jumping). (disabled by default)

<a id='changelog-0.16.0.0'></a>
## 0.16.0.0 — 2024-05-13

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-consensus-diffusion
version: 0.16.0.0
version: 0.17.0.0
synopsis: Integration for the Ouroboros Network layer
description:
Top level integration for consensus & network layers of the Ouroboros blockchain protocol.
Expand Down Expand Up @@ -88,7 +88,7 @@ library
hashable,
io-classes ^>=1.5,
mtl,
ouroboros-consensus ^>=0.18,
ouroboros-consensus ^>=0.19,
ouroboros-network ^>=0.16,
ouroboros-network-api ^>=0.7.3,
ouroboros-network-framework ^>=0.13.2,
Expand Down
7 changes: 7 additions & 0 deletions ouroboros-consensus-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

# Changelog entries

<a id='changelog-0.9.0.1'></a>
## 0.9.0.1 — 2024-06-19

### Patch

- Updated dependencies, but no changes to the interface.

<a id='changelog-0.9.0.0'></a>
## 0.9.0.0 — 2024-05-13

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-consensus-protocol
version: 0.9.0.0
version: 0.9.0.1
synopsis: Cardano consensus protocols
description: Cardano consensus protocols.
license: Apache-2.0
Expand Down Expand Up @@ -76,7 +76,7 @@ library
containers,
mtl,
nothunks,
ouroboros-consensus ^>=0.18,
ouroboros-consensus ^>=0.19,
serialise,
text,

Expand Down
21 changes: 21 additions & 0 deletions ouroboros-consensus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

# Changelog entries

<a id='changelog-0.19.0.0'></a>
## 0.19.0.0 — 2024-06-19

### Patch

- Updated dependencies, but no changes to the interface.

### Non-Breaking

- Fixed GDD implementation. (still disabled by default)

- ImmutableDB: added `headerToTip`.

### Breaking

- Implemented a first version of CSJ (ChainSync Jumping). (disabled by default)

- Added `getHashForSlot` to the internal ImmutableDB API.

- ImmutableDB `blockToTip`: relaxed constraints.

<a id='changelog-0.18.0.0'></a>
## 0.18.0.0 — 2024-05-13

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion ouroboros-consensus/ouroboros-consensus.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: ouroboros-consensus
version: 0.18.0.0
version: 0.19.0.0
synopsis: Consensus layer for the Ouroboros blockchain protocol
description: Consensus layer for the Ouroboros blockchain protocol.
license: Apache-2.0
Expand Down

0 comments on commit b11fd87

Please sign in to comment.