From 1bbac9c14377983a87c9ffc28ab6146057b388aa Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Thu, 18 Jan 2024 16:32:20 +0100 Subject: [PATCH] Release 0.15.0 --- CHANGELOG.md | 2 +- demo/docker-compose.yaml | 12 ++++++------ demo/seed-devnet.sh | 2 +- docs/docs/tutorial/index.md | 8 ++++---- hydra-node/json-schemas/api.yaml | 2 +- hydra-plutus-extras/hydra-plutus-extras.cabal | 2 +- hydra-test-utils/hydra-test-utils.cabal | 2 +- hydra-tui/hydra-tui.cabal | 2 +- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e75350a576..b12dd958892 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ As a minor extension, we also keep a semantic version for the `UNRELEASED` changes. -## [0.15.0] - UNRELEASED +## [0.15.0] - 2024-01-18 - Tested with `cardano-node 8.7.3` and `cardano-cli 8.17.0.0`. diff --git a/demo/docker-compose.yaml b/demo/docker-compose.yaml index a65441bf986..1945058adea 100644 --- a/demo/docker-compose.yaml +++ b/demo/docker-compose.yaml @@ -23,7 +23,7 @@ services: hydra-node-1: # NOTE: Make sure to use the same image in ./seed-devnet.sh - image: ghcr.io/input-output-hk/hydra-node:0.14.0 + image: ghcr.io/input-output-hk/hydra-node:0.15.0 build: context: ../ target: hydra-node @@ -60,7 +60,7 @@ services: hydra-node-2: # NOTE: Make sure to use the same image in ./seed-devnet.sh - image: ghcr.io/input-output-hk/hydra-node:0.14.0 + image: ghcr.io/input-output-hk/hydra-node:0.15.0 build: context: ../ target: hydra-node @@ -97,7 +97,7 @@ services: hydra-node-3: # NOTE: Make sure to use the same image in ./seed-devnet.sh - image: ghcr.io/input-output-hk/hydra-node:0.14.0 + image: ghcr.io/input-output-hk/hydra-node:0.15.0 build: context: ../ target: hydra-node @@ -133,7 +133,7 @@ services: restart: always hydra-tui-1: - image: ghcr.io/input-output-hk/hydra-tui:0.14.0 + image: ghcr.io/input-output-hk/hydra-tui:0.15.0 build: context: ../ target: hydra-tui @@ -152,7 +152,7 @@ services: ipv4_address: 172.16.238.11 hydra-tui-2: - image: ghcr.io/input-output-hk/hydra-tui:0.14.0 + image: ghcr.io/input-output-hk/hydra-tui:0.15.0 build: context: ../ target: hydra-tui @@ -171,7 +171,7 @@ services: ipv4_address: 172.16.238.21 hydra-tui-3: - image: ghcr.io/input-output-hk/hydra-tui:0.14.0 + image: ghcr.io/input-output-hk/hydra-tui:0.15.0 build: context: ../ target: hydra-tui diff --git a/demo/seed-devnet.sh b/demo/seed-devnet.sh index 74036233418..9f1a9cfcb83 100755 --- a/demo/seed-devnet.sh +++ b/demo/seed-devnet.sh @@ -49,7 +49,7 @@ function hnode() { docker run --rm -it \ --pull always \ -v ${SCRIPT_DIR}/devnet:/devnet \ - ghcr.io/input-output-hk/hydra-node:0.14.0 -- ${@} + ghcr.io/input-output-hk/hydra-node:0.15.0 -- ${@} fi } diff --git a/docs/docs/tutorial/index.md b/docs/docs/tutorial/index.md index f2e13cdf54e..c2bfd77dc1b 100644 --- a/docs/docs/tutorial/index.md +++ b/docs/docs/tutorial/index.md @@ -41,7 +41,7 @@ components of the Cardano ecosystem, putting them in a `bin/` directory: ```shell mkdir -p bin -version=0.14.0 +version=0.15.0 curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip unzip -d bin hydra-x86_64-linux-${version}.zip 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/* ```shell mkdir -p bin -version=0.14.0 +version=0.15.0 curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip unzip -d bin hydra-aarch64-darwin-${version}.zip 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: ```shell -version=0.14.0 +version=0.15.0 hydra-node \ --node-id "alice-node" \ --persistence-dir persistence-alice \ @@ -420,7 +420,7 @@ hydra-node \ ```shell -version=0.14.0 +version=0.15.0 hydra-node \ --node-id "bob-node" \ --persistence-dir persistence-bob \ diff --git a/hydra-node/json-schemas/api.yaml b/hydra-node/json-schemas/api.yaml index 487704853c1..799813af5da 100644 --- a/hydra-node/json-schemas/api.yaml +++ b/hydra-node/json-schemas/api.yaml @@ -1,7 +1,7 @@ asyncapi: '2.3.0' info: title: Hydra Node API - version: '0.14.0' + version: '0.15.0' description: | WebSocket/HTTP API for administrating & interacting with Hydra Heads: multi-party isomorphic state-channels for Cardano. diff --git a/hydra-plutus-extras/hydra-plutus-extras.cabal b/hydra-plutus-extras/hydra-plutus-extras.cabal index 2299c310e6d..7372883b97e 100644 --- a/hydra-plutus-extras/hydra-plutus-extras.cabal +++ b/hydra-plutus-extras/hydra-plutus-extras.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: hydra-plutus-extras -version: 0.14.0 +version: 0.15.0 synopsis: Several extras and extensions of plutus-tx and plutus-ledger-api diff --git a/hydra-test-utils/hydra-test-utils.cabal b/hydra-test-utils/hydra-test-utils.cabal index 801c5ecefd6..64b7b16e689 100644 --- a/hydra-test-utils/hydra-test-utils.cabal +++ b/hydra-test-utils/hydra-test-utils.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: hydra-test-utils -version: 0.14.0 +version: 0.15.0 synopsis: Hydra utilities for testing, aka. "Test Prelude" author: IOG copyright: 2022 IOG diff --git a/hydra-tui/hydra-tui.cabal b/hydra-tui/hydra-tui.cabal index 0de0fc50e7b..b1131f7c8ad 100644 --- a/hydra-tui/hydra-tui.cabal +++ b/hydra-tui/hydra-tui.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: hydra-tui -version: 0.14.0 +version: 0.15.0 synopsis: TUI for managing a Hydra node description: TUI for managing a Hydra node author: IOG