Releases: near/near-cli-rs
Releases · near/near-cli-rs
0.3.4 - 2023-04-20
Release Notes
Other
Install near-cli-rs 0.3.4
Install prebuilt binaries via shell script
# WARNING: this installer is experimental
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/download/v0.3.4/near-cli-rs-v0.3.4-installer.sh | sh
Install prebuilt binaries via powershell script
# WARNING: this installer is experimental
irm https://github.com/near/near-cli-rs/releases/download/v0.3.4/near-cli-rs-v0.3.4-installer.ps1 | iex
Install prebuilt binaries into your npm project
npm install [email protected]
Download near-cli-rs 0.3.4
target | kind | download |
---|---|---|
aarch64-apple-darwin | tarball | near-cli-rs-v0.3.4-aarch64-apple-darwin.tar.gz |
x86_64-apple-darwin | tarball | near-cli-rs-v0.3.4-x86_64-apple-darwin.tar.gz |
x86_64-pc-windows-msvc | tarball | near-cli-rs-v0.3.4-x86_64-pc-windows-msvc.tar.gz |
x86_64-unknown-linux-gnu | tarball | near-cli-rs-v0.3.4-x86_64-unknown-linux-gnu.tar.gz |
0.3.3 - 2023-04-20
Release Notes
Added
- Added support for Contract Storage Management Standard (#179)
Other
- update release-plz-action to v0.5 (#180)
Install near-cli-rs 0.3.3
Install prebuilt binaries via shell script
# WARNING: this installer is experimental
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/download/v0.3.3/near-cli-rs-v0.3.3-installer.sh | sh
Install prebuilt binaries via powershell script
# WARNING: this installer is experimental
irm https://github.com/near/near-cli-rs/releases/download/v0.3.3/near-cli-rs-v0.3.3-installer.ps1 | iex
Download near-cli-rs 0.3.3
target | kind | download |
---|---|---|
aarch64-apple-darwin | tarball | near-cli-rs-v0.3.3-aarch64-apple-darwin.tar.xz |
x86_64-apple-darwin | tarball | near-cli-rs-v0.3.3-x86_64-apple-darwin.tar.xz |
x86_64-pc-windows-msvc | tarball | near-cli-rs-v0.3.3-x86_64-pc-windows-msvc.zip |
x86_64-unknown-linux-gnu | tarball | near-cli-rs-v0.3.3-x86_64-unknown-linux-gnu.tar.xz |
0.3.2
Release Notes
Added
- Show contract function call result and make it usable in scripts by only writing the result to stdout, and everything else will be printed to stderr (#177)
- Use optimisticly latest nonce for the access key instead of the final one to avoid errors running commands one after the other (#176)
Fixed
- fixed printing about saving the access key (#173)
Other
- Added GitHub Actions installation instructions
Install near-cli-rs 0.3.2
Install prebuilt binaries via shell script
# WARNING: this installer is experimental
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/download/v0.3.2/near-cli-rs-v0.3.2-installer.sh | sh
Install prebuilt binaries via powershell script
# WARNING: this installer is experimental
irm https://github.com/near/near-cli-rs/releases/download/v0.3.2/near-cli-rs-v0.3.2-installer.ps1 | iex
Download near-cli-rs 0.3.2
target | kind | download |
---|---|---|
aarch64-apple-darwin | tarball | near-cli-rs-v0.3.2-aarch64-apple-darwin.tar.xz |
x86_64-apple-darwin | tarball | near-cli-rs-v0.3.2-x86_64-apple-darwin.tar.xz |
x86_64-pc-windows-msvc | tarball | near-cli-rs-v0.3.2-x86_64-pc-windows-msvc.zip |
x86_64-unknown-linux-gnu | tarball | near-cli-rs-v0.3.2-x86_64-unknown-linux-gnu.tar.xz |
0.3.1 - 2023-04-06
Release Notes
Other
- Use custom GITHUB_TOKEN to be able to trigger follow up CI jobs
- make a git tag with Release-plz, so it triggers binary release pipeline (#170)
Install near-cli-rs 0.3.1
Install prebuilt binaries via shell script
# WARNING: this installer is experimental
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/download/v0.3.1/near-cli-rs-v0.3.1-installer.sh | sh
Install prebuilt binaries via powershell script
# WARNING: this installer is experimental
irm https://github.com/near/near-cli-rs/releases/download/v0.3.1/near-cli-rs-v0.3.1-installer.ps1 | iex
Download near-cli-rs 0.3.1
target | kind | download |
---|---|---|
aarch64-apple-darwin | tarball | near-cli-rs-v0.3.1-aarch64-apple-darwin.tar.xz |
x86_64-apple-darwin | tarball | near-cli-rs-v0.3.1-x86_64-apple-darwin.tar.xz |
x86_64-pc-windows-msvc | tarball | near-cli-rs-v0.3.1-x86_64-pc-windows-msvc.zip |
x86_64-unknown-linux-gnu | tarball | near-cli-rs-v0.3.1-x86_64-unknown-linux-gnu.tar.xz |
0.2.4
- Improved the interactive messages to provide more relevant context (major refactoring)
- Enables using
near-cli-rs
as a library crate
0.2.3
- Implemented self-update functionality (extension -> self-update) with an automatic latest version check on every other command execution.
0.2.2
feat(ci): Added macOS ARM64 (M1/M2) binary releases support (#164)
0.2.1
There are no breaking changes in this release.
New features:
- Accounts can now be imported by simply specifying a seed-phrase or a private key (near-cli-rs will just record the private key in the key storage)
- The actions that require sending a transaction can now sign the transaction by providing a seed-phrase (it is not getting recorded anywhere) or a JSON file with a private key corresponding to the signer account id
- Interactive mode is now even better! You can also quit from CLI interactive mode by pressing Esc key
0.2.0
0.2.0 release is a major breaking change that adopted the new layout for the commands structure proposed here: https://github.com/near/near-cli-rs/blob/0.2.0/docs/NEW_NEAR_CLI_INTERFACE.md
Top-level commands are now resource-centric:
account
- creation / import / deletion and key managementtokens
- native, FT and NFT toolscontract
- deployment and function executiontransaction
- arbitrary complex transaction constructionconfig
- cli configuration
0.2.0-pre.4
release: v0.2.0-pre.4