Skip to content

Commit

Permalink
CNTools 13.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlrt committed Sep 24, 2024
1 parent 91cfc41 commit f99a0d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/Scripts/cntools-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this tool will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [13.2.2] - 2024-09-23
#### Fixed
- URL for share.koios.rest to download catalyst-toolbox

## [13.2.1] - 2024-09-10
#### Added
- Added gov vote validation for role and type
Expand Down
4 changes: 2 additions & 2 deletions scripts/cnode-helper-scripts/cntools.library
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CNTOOLS_MAJOR_VERSION=13
# Minor: Changes and features of minor character that can be applied without breaking existing functionality or workflow
CNTOOLS_MINOR_VERSION=2
# Patch: Backwards compatible bug fixes. No additional functionality or major changes
CNTOOLS_PATCH_VERSION=1
CNTOOLS_PATCH_VERSION=2

CNTOOLS_VERSION="${CNTOOLS_MAJOR_VERSION}.${CNTOOLS_MINOR_VERSION}.${CNTOOLS_PATCH_VERSION}"
DUMMYFEE=20000
Expand Down Expand Up @@ -171,7 +171,7 @@ download_catalyst_toolbox() {
fi
rm -rf /tmp/catalyst-toolbox-bin && mkdir /tmp/catalyst-toolbox-bin
pushd /tmp/catalyst-toolbox-bin >/dev/null || return 1
if curl -sL -f -m ${CURL_TIMEOUT} -o "${HOME}"/.local/bin/catalyst-toolbox "https://share.koios.rest/api/public/dl/Q0m8-F2X%2Fbinaries%2Fcatalyst-toolbox-x86_64-gnu"; then
if curl -sL -f -m ${CURL_TIMEOUT} -o "${HOME}"/.local/bin/catalyst-toolbox "https://share.koios.rest/api/public/dl/xFdZDfM4%2Fbin%2Fcatalyst-toolbox"; then
chmod +x "${HOME}"/.local/bin/catalyst-toolbox
local catalyst_toolbox_version; catalyst_toolbox_version=$(catalyst-toolbox --full-version)
println DEBUG " ${catalyst_toolbox_version%% - *} ${FG_GREEN}installed!${NC}"
Expand Down

0 comments on commit f99a0d1

Please sign in to comment.