Skip to content

Commit 2b977d4

Browse files
committed
Release 0.22.4
1 parent b01dbb0 commit 2b977d4

File tree

14 files changed

+22
-24
lines changed

14 files changed

+22
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +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.23.0] - UNRELEASED
12-
13-
## [0.22.4] - UNRELEASED
11+
## [0.22.4] - 2025-08-05
1412

1513
- Accept additional field `amount` when depositing to specify the amount of Lovelace that should be depositted to a Head returning any leftover to the user.
1614

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.22.2
24+
image: ghcr.io/cardano-scaling/hydra-node:0.22.4
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.22.2
61+
image: ghcr.io/cardano-scaling/hydra-node:0.22.4
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.22.2
98+
image: ghcr.io/cardano-scaling/hydra-node:0.22.4
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.22.2
134+
image: ghcr.io/cardano-scaling/hydra-tui:0.22.4
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.22.2
151+
image: ghcr.io/cardano-scaling/hydra-tui:0.22.4
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.22.2
168+
image: ghcr.io/cardano-scaling/hydra-tui:0.22.4
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
@@ -55,7 +55,7 @@ function hnode() {
5555
docker run --rm -it \
5656
--pull always \
5757
-v ${SCRIPT_DIR}/devnet:/devnet \
58-
ghcr.io/cardano-scaling/hydra-node:0.22.2 -- ${@}
58+
ghcr.io/cardano-scaling/hydra-node:0.22.4 -- ${@}
5959
fi
6060
}
6161

docs/docs/tutorial/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ that you have a good version of jq with this command:
4545
```shell
4646
mkdir -p bin
4747

48-
hydra_version=0.22.2
48+
hydra_version=0.22.4
4949
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-x86_64-linux-${hydra_version}.zip
5050
unzip -d bin hydra-x86_64-linux-${hydra_version}.zip
5151

@@ -71,7 +71,7 @@ Finally, verify your node installation by running `./bin/hydra-node --help`
7171
```shell
7272
mkdir -p bin
7373

74-
hydra_version=0.22.2
74+
hydra_version=0.22.4
7575
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-aarch64-darwin-${hydra_version}.zip
7676
unzip -d bin hydra-aarch64-darwin-${hydra_version}.zip
7777

@@ -415,7 +415,7 @@ Start the `hydra-node` using these parameters:
415415
<TabItem value="alice" label="Alice">
416416

417417
```shell
418-
hydra_version=0.22.2
418+
hydra_version=0.22.4
419419
hydra-node \
420420
--node-id "alice-node" \
421421
--persistence-dir persistence-alice \
@@ -437,7 +437,7 @@ hydra-node \
437437
<TabItem value="bob" label="Bob">
438438

439439
```shell
440-
hydra_version=0.22.2
440+
hydra_version=0.22.4
441441
hydra-node \
442442
--node-id "bob-node" \
443443
--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.22.2
3+
version: 0.22.4
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.22.2
3+
version: 0.22.4
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.22.2
3+
version: 0.22.4
44
synopsis:
55
Integration test suite using a local cluster of cardano and hydra nodes
66

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.22.2'
4+
version: '0.22.4'
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

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-plutus-extras
3-
version: 0.22.2
3+
version: 0.22.4
44
synopsis:
55
Several extras and extensions of plutus-tx and plutus-ledger-api
66

hydra-plutus/hydra-plutus.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hydra-plutus
3-
version: 0.22.2
3+
version: 0.22.4
44
synopsis: Hydra Plutus Contracts
55
author: IOG
66
copyright: 2022 IOG

0 commit comments

Comments
 (0)