Skip to content

Commit 98ec49f

Browse files
committed
Release 0.19.1
1 parent cf2a21e commit 98ec49f

File tree

15 files changed

+28
-25
lines changed

15 files changed

+28
-25
lines changed

CHANGELOG.md

+1-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.1] - UNRELEASED
11+
## [0.19.1] - 2024-03-04
1212

1313
- Submit observations of `hydra-chain-observer` to a `hydra-explorer` via optional `--explorer` option.
1414

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.19.0
24+
image: ghcr.io/cardano-scaling/hydra-node:0.19.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.19.0
61+
image: ghcr.io/cardano-scaling/hydra-node:0.19.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.19.0
98+
image: ghcr.io/cardano-scaling/hydra-node:0.19.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.19.0
134+
image: ghcr.io/cardano-scaling/hydra-tui:0.19.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.19.0
151+
image: ghcr.io/cardano-scaling/hydra-tui:0.19.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.19.0
168+
image: ghcr.io/cardano-scaling/hydra-tui:0.19.1
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.19.0 -- ${@}
54+
ghcr.io/cardano-scaling/hydra-node:0.19.1 -- ${@}
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.19.0
34+
hydra_version=0.19.1
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.19.0
52+
hydra_version=0.19.1
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.19.0
384+
hydra_version=0.19.1
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.19.0
407+
hydra_version=0.19.1
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.19.0
3+
version: 0.19.1
44
synopsis: A Haskell API for Cardano, tailored to the Hydra project.
55
author: IOG
66
copyright: 2022 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.19.0
3+
version: 0.19.1
44
synopsis:
55
Integration test suite using a local cluster of cardano and hydra nodes
66

hydra-node/hydra-node.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-node
3-
version: 0.19.0
3+
version: 0.19.1
44
synopsis: The Hydra node
55
author: IOG
66
copyright: 2022 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.19.0'
4+
version: '0.19.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

+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.19.0
3+
version: 0.19.1
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.0
3+
version: 0.19.1
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.19.0
3+
version: 0.19.1
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.19.0
3+
version: 0.19.1
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.19.0
3+
version: 0.19.1
44
synopsis: TUI for managing a Hydra node
55
description: TUI for managing a Hydra node
66
author: IOG

hydra-tx/hydra-tx.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hydra-tx
3-
version: 0.19.0
3+
version: 0.19.1
44
synopsis: Hydra transaction library
55
author: IOG
66
copyright: 2024 IOG

networks.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"0.17.0": "0d2eca8c8daf23061f5ba24a8f3113afba52a2e26318dc78c5583d9fc86b7b85",
88
"0.18.0": "747c39eb53a4092fd46e10b417beef9781bf336a4fc1fd439e7492fe3876a1ba",
99
"0.18.1": "747c39eb53a4092fd46e10b417beef9781bf336a4fc1fd439e7492fe3876a1ba",
10-
"0.19.0": "ab1d9f8cca896bca06b70df74860deecf20774e03d8562aecaed37525f6ebead"
10+
"0.19.0": "ab1d9f8cca896bca06b70df74860deecf20774e03d8562aecaed37525f6ebead",
11+
"0.19.1": "ab1d9f8cca896bca06b70df74860deecf20774e03d8562aecaed37525f6ebead"
1112
},
1213
"preprod": {
1314
"0.13.0": "f917dcd1fa2653e33d6d0ca5a067468595b546120c3085fab60848c34f92c265",
@@ -17,7 +18,8 @@
1718
"0.17.0": "c7b9db4986611d0ce7ff8546ef5d42af68566783a40604c372182342c4124e7d",
1819
"0.18.0": "976b28bc716490fbaa4e17d7bf33b04f27fcfafef58c436c4f2644adeeb48829",
1920
"0.18.1": "976b28bc716490fbaa4e17d7bf33b04f27fcfafef58c436c4f2644adeeb48829",
20-
"0.19.0": "03f8deb122fbbd98af8eb58ef56feda37728ec957d39586b78198a0cf624412a"
21+
"0.19.0": "03f8deb122fbbd98af8eb58ef56feda37728ec957d39586b78198a0cf624412a",
22+
"0.19.1": "03f8deb122fbbd98af8eb58ef56feda37728ec957d39586b78198a0cf624412a"
2123
},
2224
"preview": {
2325
"0.13.0": "1e00c627ec4b2ad0b4aa68068d3818ca0e41338c87e5504cda118c4050a98763",
@@ -27,7 +29,8 @@
2729
"0.17.0": "6d3f02bc648c1b62bb90fc221a8476fc47d4faaea4a293b00e58ac40c3377b85",
2830
"0.18.0": "19d25f489ffa66ba3568342657fe441f47a417d4e31585b5f0278ebe619ecf41",
2931
"0.18.1": "19d25f489ffa66ba3568342657fe441f47a417d4e31585b5f0278ebe619ecf41",
30-
"0.19.0": "0fd2468a66a0b1cb944cff9512ecfa25cdd2799cb48b07210c449a5ecace267d"
32+
"0.19.0": "0fd2468a66a0b1cb944cff9512ecfa25cdd2799cb48b07210c449a5ecace267d",
33+
"0.19.1": "0fd2468a66a0b1cb944cff9512ecfa25cdd2799cb48b07210c449a5ecace267d"
3134
},
3235
"sanchonet": {
3336
"0.16.0": "af37f4f6bf7459d2ae1d6b2a1a2e4049465b62a8ebc308f3d6d6af68240a4419",

0 commit comments

Comments
 (0)