Skip to content

Commit 9f1027e

Browse files
committed
Prepare release 0.13.0
1 parent 38a906d commit 9f1027e

File tree

9 files changed

+15
-14
lines changed

9 files changed

+15
-14
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ 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.13.0] - UNRELEASED
11+
12+
## [0.13.0] - 2023-10-03
1213

1314
- **BREAKING** Update to plutus 1.9. This changes the script hashes.
1415

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.12.0
26+
image: ghcr.io/input-output-hk/hydra-node:0.13.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.12.0
63+
image: ghcr.io/input-output-hk/hydra-node:0.13.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.12.0
100+
image: ghcr.io/input-output-hk/hydra-node:0.13.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.12.0
136+
image: ghcr.io/input-output-hk/hydra-tui:0.13.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.12.0
155+
image: ghcr.io/input-output-hk/hydra-tui:0.13.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.12.0
174+
image: ghcr.io/input-output-hk/hydra-tui:0.13.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.12.0 -- ${@}
52+
ghcr.io/input-output-hk/hydra-node:0.13.0 -- ${@}
5353
fi
5454
}
5555

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.12.0
3+
version: 0.13.0
44
synopsis:
55
Integration test suite using a local cluster of cardano and hydra nodes
66

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

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.12.0
3+
version: 0.13.0
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.12.0
3+
version: 0.13.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.12.0
3+
version: 0.13.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)