From b108ac30739e35f3653a7968b6a68c3a00ea0305 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Thu, 4 Jul 2024 10:40:55 -0600 Subject: [PATCH] Chia v2.4.2rc1 --- CHANGELOG.md | 11 ++++++++--- scripts/forks/chia_install.sh | 4 ++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9a63ac3..4582837f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,19 @@ 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.1] - Unreleased +## [2.4.2] - Unreleased +### Added +### Changed +### Updated + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.4.2) to v2.4.2 - misc improvements, see their release notes. + - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.1.giga36) to v2.4.1.giga36. + +## [2.4.1] - 2024-07-04 ### Added ### Changed ### Updated - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.4.1) to v2.4.1 - misc improvements, see their release notes. - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.0.giga36) to v2.4.0.giga36. -### Notes - - Support for new blockchains and tools DOES NOT imply my endorsement for them. *Only run those you are comfortable with.* ## [2.4.0] - Unreleased ### Added diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 2d166f48..13a6d440 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.1/chia-blockchain-cli_2.4.1-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.2-rc1/chia-blockchain-cli_2.4.2rc1-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.1/chia-blockchain-cli_2.4.1-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.2-rc1/chia-blockchain-cli_2.4.2rc1-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi