Skip to content

Commit 1ffe7c6

Browse files
committed
Release 0.19.0
1 parent b402ede commit 1ffe7c6

File tree

16 files changed

+34
-27
lines changed

16 files changed

+34
-27
lines changed

.github/workflows/explorer/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
restart: always
1818

1919
hydra-explorer:
20-
image: ghcr.io/cardano-scaling/hydra-explorer:0.18.1
20+
image: ghcr.io/cardano-scaling/hydra-explorer:0.19.0
2121
volumes:
2222
- /srv/var/cardano/state-preview:/data
2323
ports:

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
As a minor extension, we also keep a semantic version for the `UNRELEASED`
99
changes.
1010

11-
## [0.19.0] - UNRELEASED
11+
## [0.19.0] - 2024-09-13
1212

1313
- Tested with `cardano-node 9.1.1` and `cardano-cli 9.2.1.0`
1414

@@ -20,6 +20,9 @@ changes.
2020

2121
- Adds a manual recipient address entry to `hydra-tui` and fixes event handling. [#1607](https://github.com/cardano-scaling/hydra/pull/1607)
2222

23+
- Add a demo mode to hydra-cluster to facilitate network resiliance tests [#1552](https://github.com/cardano-scaling/hydra/pull/1552)
24+
25+
2326
## [0.18.1] - 2024-08-15
2427

2528
- New landing page and updated documentation style. [#1560](https://github.com/cardano-scaling/hydra/pull/1560)

demo/docker-compose.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121

2222
hydra-node-1:
2323
# NOTE: Make sure to use the same image in ./seed-devnet.sh
24-
image: ghcr.io/cardano-scaling/hydra-node:0.18.1
24+
image: ghcr.io/cardano-scaling/hydra-node:0.19.0
2525
build:
2626
context: ../
2727
target: hydra-node
@@ -58,7 +58,7 @@ services:
5858

5959
hydra-node-2:
6060
# NOTE: Make sure to use the same image in ./seed-devnet.sh
61-
image: ghcr.io/cardano-scaling/hydra-node:0.18.1
61+
image: ghcr.io/cardano-scaling/hydra-node:0.19.0
6262
build:
6363
context: ../
6464
target: hydra-node
@@ -95,7 +95,7 @@ services:
9595

9696
hydra-node-3:
9797
# NOTE: Make sure to use the same image in ./seed-devnet.sh
98-
image: ghcr.io/cardano-scaling/hydra-node:0.18.1
98+
image: ghcr.io/cardano-scaling/hydra-node:0.19.0
9999
build:
100100
context: ../
101101
target: hydra-node
@@ -131,7 +131,7 @@ services:
131131
restart: always
132132

133133
hydra-tui-1:
134-
image: ghcr.io/cardano-scaling/hydra-tui:0.18.1
134+
image: ghcr.io/cardano-scaling/hydra-tui:0.19.0
135135
build:
136136
context: ../
137137
target: hydra-tui
@@ -148,7 +148,7 @@ services:
148148
ipv4_address: 172.16.238.11
149149

150150
hydra-tui-2:
151-
image: ghcr.io/cardano-scaling/hydra-tui:0.18.1
151+
image: ghcr.io/cardano-scaling/hydra-tui:0.19.0
152152
build:
153153
context: ../
154154
target: hydra-tui
@@ -165,7 +165,7 @@ services:
165165
ipv4_address: 172.16.238.21
166166

167167
hydra-tui-3:
168-
image: ghcr.io/cardano-scaling/hydra-tui:0.18.1
168+
image: ghcr.io/cardano-scaling/hydra-tui:0.19.0
169169
build:
170170
context: ../
171171
target: hydra-tui

demo/seed-devnet.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function hnode() {
5151
docker run --rm -it \
5252
--pull always \
5353
-v ${SCRIPT_DIR}/devnet:/devnet \
54-
ghcr.io/cardano-scaling/hydra-node:0.18.1 -- ${@}
54+
ghcr.io/cardano-scaling/hydra-node:0.19.0 -- ${@}
5555
fi
5656
}
5757

docs/docs/tutorial/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ After ensuring the tools above are available, begin by downloading pre-built bin
3131

3232
```shell
3333
mkdir -p bin
34-
hydra_version=0.18.1
34+
hydra_version=0.19.0
3535
mithril_version=2430.0
3636
cardano_node_version=9.1.1
3737
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-x86_64-linux-${hydra_version}.zip
@@ -49,7 +49,7 @@ chmod +x bin/*
4949

5050
```shell
5151
mkdir -p bin
52-
hydra_version=0.18.1
52+
hydra_version=0.19.0
5353
mithril_version=2430.0
5454
cardano_node_version=9.1.1
5555
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-aarch64-darwin-${hydra_version}.zip
@@ -381,7 +381,7 @@ Start the `hydra-node` using these parameters:
381381
<TabItem value="alice" label="Alice">
382382

383383
```shell
384-
hydra_version=0.18.1
384+
hydra_version=0.19.0
385385
hydra-node \
386386
--node-id "alice-node" \
387387
--persistence-dir persistence-alice \
@@ -404,7 +404,7 @@ hydra-node \
404404
<TabItem value="bob" label="Bob">
405405

406406
```shell
407-
hydra_version=0.18.1
407+
hydra_version=0.19.0
408408
hydra-node \
409409
--node-id "bob-node" \
410410
--persistence-dir persistence-bob \

hydra-cardano-api/hydra-cardano-api.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-cardano-api
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis: A Haskell API for Cardano, tailored to the Hydra project.
55
author: IOG
66
copyright: 2022 IOG

hydra-chain-observer/hydra-chain-observer.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-chain-observer
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis: Hydra Chain Observer
55
author: IOG
66
copyright: 2023 IOG

hydra-cluster/hydra-cluster.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-cluster
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis:
55
Integration test suite using a local cluster of cardano and hydra nodes
66

hydra-explorer/hydra-explorer.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-explorer
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis: Hydra Explorer
55
author: IOG
66
copyright: 2023 IOG

hydra-node/json-schemas/api.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
asyncapi: '2.3.0'
22
info:
33
title: Hydra Node API
4-
version: '0.18.1'
4+
version: '0.19.0'
55
description: |
66
WebSocket/HTTP API for administrating & interacting with Hydra Heads: multi-party isomorphic state-channels for Cardano.
77

hydra-plutus-extras/hydra-plutus-extras.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-plutus-extras
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis:
55
Several extras and extensions of plutus-tx and plutus-ledger-api
66

hydra-plutus/hydra-plutus.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-plutus
3-
version: 0.19
3+
version: 0.19.0
44
synopsis: Hydra Plutus Contracts
55
author: IOG
66
copyright: 2022 IOG

hydra-prelude/hydra-prelude.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-prelude
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis: Custom Hydra Prelude used across other Hydra packages.
55
author: IOG
66
copyright: 2022 IOG

hydra-test-utils/hydra-test-utils.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-test-utils
3-
version: 0.18.1
3+
version: 0.19.0
44
synopsis: Hydra utilities for testing, aka. "Test Prelude"
55
author: IOG
66
copyright: 2022 IOG

hydra-tui/hydra-tui.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-tui
3-
version: 0.18.2
3+
version: 0.19.0
44
synopsis: TUI for managing a Hydra node
55
description: TUI for managing a Hydra node
66
author: IOG

networks.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"0.16.0": "2d52e5787b198daeb280f9de63e5dec126b1843b050e85b1642ff8e47cb6de73",
77
"0.17.0": "0d2eca8c8daf23061f5ba24a8f3113afba52a2e26318dc78c5583d9fc86b7b85",
88
"0.18.0": "747c39eb53a4092fd46e10b417beef9781bf336a4fc1fd439e7492fe3876a1ba",
9-
"0.18.1": "747c39eb53a4092fd46e10b417beef9781bf336a4fc1fd439e7492fe3876a1ba"
9+
"0.18.1": "747c39eb53a4092fd46e10b417beef9781bf336a4fc1fd439e7492fe3876a1ba",
10+
"0.19.0": "ab1d9f8cca896bca06b70df74860deecf20774e03d8562aecaed37525f6ebead"
1011
},
1112
"preprod": {
1213
"0.13.0": "f917dcd1fa2653e33d6d0ca5a067468595b546120c3085fab60848c34f92c265",
@@ -15,7 +16,8 @@
1516
"0.16.0": "6264cee4d5eab3fb58ab67f3899ecbcc0d7e72732a2d9c1c5d638115db6ca711",
1617
"0.17.0": "c7b9db4986611d0ce7ff8546ef5d42af68566783a40604c372182342c4124e7d",
1718
"0.18.0": "976b28bc716490fbaa4e17d7bf33b04f27fcfafef58c436c4f2644adeeb48829",
18-
"0.18.1": "976b28bc716490fbaa4e17d7bf33b04f27fcfafef58c436c4f2644adeeb48829"
19+
"0.18.1": "976b28bc716490fbaa4e17d7bf33b04f27fcfafef58c436c4f2644adeeb48829",
20+
"0.19.0": "03f8deb122fbbd98af8eb58ef56feda37728ec957d39586b78198a0cf624412a"
1921
},
2022
"preview": {
2123
"0.13.0": "1e00c627ec4b2ad0b4aa68068d3818ca0e41338c87e5504cda118c4050a98763",
@@ -24,11 +26,13 @@
2426
"0.16.0": "1f34e4ee2404a5e4fc8ef970b7b8717af34c1a5a22107b82cde79c5d11da93b9",
2527
"0.17.0": "6d3f02bc648c1b62bb90fc221a8476fc47d4faaea4a293b00e58ac40c3377b85",
2628
"0.18.0": "19d25f489ffa66ba3568342657fe441f47a417d4e31585b5f0278ebe619ecf41",
27-
"0.18.1": "19d25f489ffa66ba3568342657fe441f47a417d4e31585b5f0278ebe619ecf41"
29+
"0.18.1": "19d25f489ffa66ba3568342657fe441f47a417d4e31585b5f0278ebe619ecf41",
30+
"0.19.0": "0fd2468a66a0b1cb944cff9512ecfa25cdd2799cb48b07210c449a5ecace267d"
2831
},
2932
"sanchonet": {
3033
"0.16.0": "af37f4f6bf7459d2ae1d6b2a1a2e4049465b62a8ebc308f3d6d6af68240a4419",
3134
"0.17.0": "",
32-
"0.18.0": ""
35+
"0.18.0": "",
36+
"0.19.0": ""
3337
}
3438
}

0 commit comments

Comments
 (0)