From d9cc3495075bc60f2a509ee8579e8c192c124883 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Tue, 19 Dec 2023 09:35:18 -0700 Subject: [PATCH] Fix for CNI's unfortunate bug in 2.1.2 --- CHANGELOG.md | 4 ++++ scripts/forks/chia_install.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 537a4e13..3921f8a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ 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.1.3] - 2023-12-19 +### Updated + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.1.3) to v2.1.3 - fix for unforunate bug CNI released in 2.1.2 + ## [2.1.2] - 2023-12-13 ### Added - Settings | Plotting | Bladebit now supports "no_direct_io: true" option diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index da82431f..19500998 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.1.2/chia-blockchain-cli_2.1.2-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.1.3/chia-blockchain-cli_2.1.3-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.1.2/chia-blockchain-cli_2.1.2-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.1.3/chia-blockchain-cli_2.1.3-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi fi