From 5cc9ff5a5b746d42f5828ea6f53deb99f3f025e8 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Wed, 6 Mar 2024 13:38:55 -0700 Subject: [PATCH] Chia v2.2.1 - *fingers crossed* --- CHANGELOG.md | 7 +++++++ VERSION | 2 +- scripts/forks/chia_install.sh | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4649cb39..3346270a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ 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.2.1] - 2024-03-06 +### Updated + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.2.1) to v2.2.1 - possible fixes for serious problems in v2.2.0? +### Notes + - Updated potentially buggy Chia software DOES NOT imply my endorsement. *Only upgrade when you are comfortable.* + ## [2.2.0] - 2024-02-29 +**NOTE** CNI Corporate pulled retracted their v2.2.0 release after a day due to serious bugs. Use v2.2.1 instead or just delay upgrading. ### Added - Support for Achi blockchain. Requires its own plots (like Chives), you'll have to plot separately if interested. Thanks @priyankub - Optionally launch Chia Data Layer services (https://docs.chia.net/guides/datalayer-user-guide/) if env var `chia_data=true` is set. diff --git a/VERSION b/VERSION index e3a4f193..fae692e4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.0 \ No newline at end of file +2.2.1 \ No newline at end of file diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 2126506c..95c03c45 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.2.0/chia-blockchain-cli_2.2.0-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.2.1/chia-blockchain-cli_2.2.1-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.2.0/chia-blockchain-cli_2.2.0-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.2.1/chia-blockchain-cli_2.2.1-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi