From 2c936ef51f12f2677e6a1bd974b8d3dd31403609 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Tue, 26 May 2026 10:20:03 -0600 Subject: [PATCH] Chia @ v2.7.1 --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- scripts/forks/chia_install.sh | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86755a56..0a32f2f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ 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.7.1] - 2026-05-28 +### Added +### Changed +### Updated + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.7.1) to v2.7.1 - misc improvements, see their release notes. + ## [2.7.0] - 2026-04-06 ### Added ### Changed diff --git a/VERSION b/VERSION index 24ba9a38..860487ca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.0 +2.7.1 diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 8ae82693..8181e936 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.7.0/chia-blockchain-cli_2.7.0-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.7.1/chia-blockchain-cli_2.7.1-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.7.0/chia-blockchain-cli_2.7.0-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.7.1/chia-blockchain-cli_2.7.1-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi