From 5da1828a705935233e446c12ba5b4db44da3cee2 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Sat, 30 Mar 2024 09:32:59 -0600 Subject: [PATCH] Chia v2.3.0rc1 --- CHANGELOG.md | 1 + scripts/forks/chia_install.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac3e4978..f9224cc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. The format - Gigahorse: Optionally launch `chia-exporter` [metrics endpoint](https://github.com/Chia-Network/chia-exporter) for Prometheus reporting if env var `chia_exporter=true` is set. ### Changed ### Updated + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.3.0) to v2.3.0 - misc improvements, see their release notes. - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.2.1.giga35) to v2.2.1.giga35. ### Notes - Support for new blockchains and tools DOES NOT imply my endorsement for them. *Only run those you are comfortable with.* diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 95c03c45..d9ce7e43 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.1/chia-blockchain-cli_2.2.1-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.3.0-rc1/chia-blockchain-cli_2.3.0rc1-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.2.1/chia-blockchain-cli_2.2.1-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.3.0-rc1/chia-blockchain-cli_2.3.0rc1-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi