diff --git a/CHANGELOG.md b/CHANGELOG.md index becb8b09725..a5a5a3dcb73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 As a minor extension, we also keep a semantic version for the `UNRELEASED` changes. -## [0.14.0] - UNRELEASED +## [0.14.0] - 2023-12-04 - **BREAKING** Multiple changes to the Hydra Head protocol on-chain: diff --git a/demo/docker-compose.yaml b/demo/docker-compose.yaml index 1901acf9337..c3be5066bac 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:unstable + image: ghcr.io/input-output-hk/hydra-node:0.14.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:unstable + image: ghcr.io/input-output-hk/hydra-node:0.14.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:unstable + image: ghcr.io/input-output-hk/hydra-node:0.14.0 build: context: ../ target: hydra-node @@ -133,7 +133,7 @@ services: restart: always hydra-tui-1: - image: ghcr.io/input-output-hk/hydra-tui:unstable + image: ghcr.io/input-output-hk/hydra-tui:0.14.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:unstable + image: ghcr.io/input-output-hk/hydra-tui:0.14.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:unstable + image: ghcr.io/input-output-hk/hydra-tui:0.14.0 build: context: ../ target: hydra-tui diff --git a/demo/seed-devnet.sh b/demo/seed-devnet.sh index 55a0046db1c..235e3d369de 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:unstable -- ${@} + ghcr.io/input-output-hk/hydra-node:0.14.0 -- ${@} fi } diff --git a/docs/docs/tutorial/index.md b/docs/docs/tutorial/index.md index b1b1176b143..03cd6510ec2 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.13.0 +version=0.14.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.1.2/cardano-node-8.1.2-linux.tar.gz \ @@ -56,7 +56,7 @@ chmod +x bin/* ```shell mkdir -p bin -version=0.13.0 +version=0.14.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-${HYDRA_VERSION}.zip curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-macos-x64.tar.gz \ @@ -397,7 +397,7 @@ Let's start the `hydra-node` with all these parameters now: ```shell -version=0.13.0 +version=0.14.0 hydra-node \ --node-id "alice-node" \ --persistence-dir persistence-alice \ @@ -420,7 +420,7 @@ hydra-node \ ```shell -version=0.13.0 +version=0.14.0 hydra-node \ --node-id "bob-node" \ --persistence-dir persistence-bob \ diff --git a/networks.json b/networks.json index 32afe6ea3be..2886719bd9f 100644 --- a/networks.json +++ b/networks.json @@ -1,12 +1,14 @@ { "mainnet": { - "0.13.0": "989e3ab136a2cdd3132a99975e76e02f62bcb03ba64ddbb5d2dfddffca8d390d" + "0.13.0": "989e3ab136a2cdd3132a99975e76e02f62bcb03ba64ddbb5d2dfddffca8d390d", + "0.14.0": "3ac58d3f9f35d8f2cb38d39639232c10cfe0b986728f672d26ffced944d74560" }, "preprod": { "0.13.0": "f917dcd1fa2653e33d6d0ca5a067468595b546120c3085fab60848c34f92c265", "0.14.0": "d8ba8c488f52228b200df48fe28305bc311d0507da2c2420b10835bf00d21948" }, "preview": { - "0.13.0": "1e00c627ec4b2ad0b4aa68068d3818ca0e41338c87e5504cda118c4050a98763" + "0.13.0": "1e00c627ec4b2ad0b4aa68068d3818ca0e41338c87e5504cda118c4050a98763", + "0.14.0": "64deee72cd424d957ea0fddf71508429ecb65fea83a041fe9b708fc2ca973a8e" } }