Skip to content

Commit 1bbac9c

Browse files
committed
Release 0.15.0
1 parent c5ed79b commit 1bbac9c

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ As a minor extension, we also keep a semantic version for the `UNRELEASED`
99
changes.
1010

1111

12-
## [0.15.0] - UNRELEASED
12+
## [0.15.0] - 2024-01-18
1313

1414
- Tested with `cardano-node 8.7.3` and `cardano-cli 8.17.0.0`.
1515

demo/docker-compose.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323

2424
hydra-node-1:
2525
# NOTE: Make sure to use the same image in ./seed-devnet.sh
26-
image: ghcr.io/input-output-hk/hydra-node:0.14.0
26+
image: ghcr.io/input-output-hk/hydra-node:0.15.0
2727
build:
2828
context: ../
2929
target: hydra-node
@@ -60,7 +60,7 @@ services:
6060

6161
hydra-node-2:
6262
# NOTE: Make sure to use the same image in ./seed-devnet.sh
63-
image: ghcr.io/input-output-hk/hydra-node:0.14.0
63+
image: ghcr.io/input-output-hk/hydra-node:0.15.0
6464
build:
6565
context: ../
6666
target: hydra-node
@@ -97,7 +97,7 @@ services:
9797

9898
hydra-node-3:
9999
# NOTE: Make sure to use the same image in ./seed-devnet.sh
100-
image: ghcr.io/input-output-hk/hydra-node:0.14.0
100+
image: ghcr.io/input-output-hk/hydra-node:0.15.0
101101
build:
102102
context: ../
103103
target: hydra-node
@@ -133,7 +133,7 @@ services:
133133
restart: always
134134

135135
hydra-tui-1:
136-
image: ghcr.io/input-output-hk/hydra-tui:0.14.0
136+
image: ghcr.io/input-output-hk/hydra-tui:0.15.0
137137
build:
138138
context: ../
139139
target: hydra-tui
@@ -152,7 +152,7 @@ services:
152152
ipv4_address: 172.16.238.11
153153

154154
hydra-tui-2:
155-
image: ghcr.io/input-output-hk/hydra-tui:0.14.0
155+
image: ghcr.io/input-output-hk/hydra-tui:0.15.0
156156
build:
157157
context: ../
158158
target: hydra-tui
@@ -171,7 +171,7 @@ services:
171171
ipv4_address: 172.16.238.21
172172

173173
hydra-tui-3:
174-
image: ghcr.io/input-output-hk/hydra-tui:0.14.0
174+
image: ghcr.io/input-output-hk/hydra-tui:0.15.0
175175
build:
176176
context: ../
177177
target: hydra-tui

demo/seed-devnet.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function hnode() {
4949
docker run --rm -it \
5050
--pull always \
5151
-v ${SCRIPT_DIR}/devnet:/devnet \
52-
ghcr.io/input-output-hk/hydra-node:0.14.0 -- ${@}
52+
ghcr.io/input-output-hk/hydra-node:0.15.0 -- ${@}
5353
fi
5454
}
5555

docs/docs/tutorial/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ components of the Cardano ecosystem, putting them in a `bin/` directory:
4141

4242
```shell
4343
mkdir -p bin
44-
version=0.14.0
44+
version=0.15.0
4545
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip
4646
unzip -d bin hydra-x86_64-linux-${version}.zip
4747
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-linux.tar.gz \
@@ -56,7 +56,7 @@ chmod +x bin/*
5656

5757
```shell
5858
mkdir -p bin
59-
version=0.14.0
59+
version=0.15.0
6060
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
6161
unzip -d bin hydra-aarch64-darwin-${version}.zip
6262
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.7.3.zip
@@ -397,7 +397,7 @@ Let's start the `hydra-node` with all these parameters now:
397397
<TabItem value="alice" label="Alice">
398398

399399
```shell
400-
version=0.14.0
400+
version=0.15.0
401401
hydra-node \
402402
--node-id "alice-node" \
403403
--persistence-dir persistence-alice \
@@ -420,7 +420,7 @@ hydra-node \
420420
<TabItem value="bob" label="Bob">
421421

422422
```shell
423-
version=0.14.0
423+
version=0.15.0
424424
hydra-node \
425425
--node-id "bob-node" \
426426
--persistence-dir persistence-bob \

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.14.0'
4+
version: '0.15.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.14.0
3+
version: 0.15.0
44
synopsis:
55
Several extras and extensions of plutus-tx and plutus-ledger-api
66

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

0 commit comments

Comments
 (0)