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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 1 deletion
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

Lines changed: 6 additions & 6 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 4 deletions
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

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: 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

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: 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

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: 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

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: 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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)