Skip to content

Commit 17d47e9

Browse files
committed
Release 0.22.1
1 parent 6929845 commit 17d47e9

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

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.0
24+
image: ghcr.io/cardano-scaling/hydra-node:0.22.1
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.0
61+
image: ghcr.io/cardano-scaling/hydra-node:0.22.1
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.0
98+
image: ghcr.io/cardano-scaling/hydra-node:0.22.1
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.0
134+
image: ghcr.io/cardano-scaling/hydra-tui:0.22.1
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.0
151+
image: ghcr.io/cardano-scaling/hydra-tui:0.22.1
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.0
168+
image: ghcr.io/cardano-scaling/hydra-tui:0.22.1
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.0 -- ${@}
58+
ghcr.io/cardano-scaling/hydra-node:0.22.1 -- ${@}
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.0
48+
hydra_version=0.22.1
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.0
74+
hydra_version=0.22.1
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.0
418+
hydra_version=0.22.1
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.0
440+
hydra_version=0.22.1
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.0
3+
version: 0.22.1
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.0
3+
version: 0.22.1
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.0
3+
version: 0.22.1
44
synopsis:
55
Integration test suite using a local cluster of cardano and hydra nodes
66

hydra-node/hydra-node.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-node
3-
version: 0.22.0
3+
version: 0.22.1
44
synopsis: The Hydra node
55
author: IOG
66
copyright: 2022 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.22.0'
4+
version: '0.22.1'
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.0
3+
version: 0.22.1
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.0
3+
version: 0.22.1
44
synopsis: Hydra Plutus Contracts
55
author: IOG
66
copyright: 2022 IOG

0 commit comments

Comments
 (0)