From e2e00e9e71828f8cd027ef2a8cabb6a42710a429 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Fri, 21 Jun 2024 08:12:55 -0600 Subject: [PATCH] 2.4.0 --- CHANGELOG.md | 2 +- scripts/forks/chia_install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42847250..519c9952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.4.0] - Unreleased +## [2.4.0] - 2024-06-24 ### Added ### Changed ### Updated diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 3916d59b..941be6ac 100644 --- a/scripts/forks/chia_install.sh +++ b/scripts/forks/chia_install.sh @@ -27,10 +27,10 @@ else echo "Installing Chia CUDA binaries on ${arch_name}..." cd /tmp if [[ "${arch_name}" == "x86_64" ]]; then - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.0-rc3/chia-blockchain-cli_2.4.0rc3-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.0/chia-blockchain-cli_2.4.0-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.0-rc3/chia-blockchain-cli_2.4.0rc3-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.0/chia-blockchain-cli_2.4.0-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi