This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
Releases: ava-labs/subnet-cli
Releases · ava-labs/subnet-cli
v0.0.4
What's Changed
- fix add validator syntactic verification by @felipemadero in #43
- Add remove subnet support by @patrick-ogrady in #44
Full Changelog: v0.0.3...v0.0.4
v0.0.3
What's Changed
- Better ledger docs by @patrick-ogrady in #25
- Format markdown and fix typos by @cgcardona in #29
- Update link to subnet doc by @yulin-dong in #34
- Easy hardcoded version info by @holisticode in #35
- Fix upstream network-runner URL by @holisticode in #36
- Update to [email protected] and add Linux Support by @felipemadero in #42
New Contributors
- @cgcardona made their first contribution in #29
- @yulin-dong made their first contribution in #34
- @holisticode made their first contribution in #35
- @felipemadero made their first contribution in #42
Full Changelog: v0.0.2...v0.0.3
v0.0.2
Changelog
- e0d273a Merge pull request #24 from ava-labs/github-actions-upload
- 21f41c4 cleanup README
- 27d8db1 add write perms
- 9cec86c update AGO
- aa0eeec run goreleaser
- a8a7b52 update README
- c009953 Merge pull request #19 from ava-labs/single-key-simplification
- 68551c4 use correct stake amount
- f99eaa7 add ledger retry
- 93bffa8 fix redundant signing bug
- 0072de4 moarest nits
- 56fe153 Merge pull request #20 from ava-labs/avalanchego-update
- 881b659 Merge pull request #22 from ava-labs/add-ledger
- 7becb67 Merge pull request #23 from ava-labs/ext-pub-key
- 7b4aef2 moar nits
- c8546e7 more nits
- ef75c11 nits
- 13fc80d update README
- 98b13cb update ledger version
- ca3dfb7 full compilation
- 3593cff fix client
- 88c587b keys correct
- 798e423 add mutli-signer algo
- 5046016 nits
- 05df27b support address iteration
- 0b0f892 error unified handling
- a42fb7e implement hard key
- 3d9db25 add ledger support in cmd
- a972a6e ledger compiled
- 19bf051 ctx first pass
- 1a1f8b9 client compiles
- da28f9b update checker
- a330e84 update AvalancheGo
- 638dc49 more naming
- a707bce fix e2e
- 51f2194 cmd compiles
- 937bc5d more naming
- 6be2306 naming improvements
- 8f3a49c client compiles
- 2f0b5a1 more progress
- b99bb9c progress
v0.0.1
VERSION=0.0.1
GOARCH=$(go env GOARCH)
GOOS=$(go env GOOS)
DOWNLOAD_PATH=/tmp/subnet-cli.tar.gz
DOWNLOAD_URL=https://github.com/ava-labs/subnet-cli/releases/download/v${VERSION}/subnet-cli_${VERSION}_linux_${GOARCH}.tar.gz
if [[ ${GOOS} == "darwin" ]]; then
DOWNLOAD_URL=https://github.com/ava-labs/subnet-cli/releases/download/v${VERSION}/subnet-cli_${VERSION}_darwin_${GOARCH}.tar.gz
fi
rm -f ${DOWNLOAD_PATH}
rm -f /tmp/subnet-cli
echo "downloading subnet-cli ${VERSION} at ${DOWNLOAD_URL}"
curl -L ${DOWNLOAD_URL} -o ${DOWNLOAD_PATH}
echo "extracting downloaded subnet-cli"
tar xzvf ${DOWNLOAD_PATH} -C /tmp
/tmp/subnet-cli -h