near-cli-rs 0.7.0 → 0.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.7.3](https://github.com/near/near-cli-rs/compare/v0.7.2...v0.7.3) - 2023-12-02
11
+
12
+ ### Added
13
+ - Added support for blind signing with Ledger [requires updated Ledger app that is not yet published] ([#259](https://github.com/near/near-cli-rs/pull/259))
14
+ - New command to reconstruct NEAR CLI command from a historical transaction ([#266](https://github.com/near/near-cli-rs/pull/266))
15
+
16
+ ### Other
17
+ - Addressed all default cargo clippy warnings ([#263](https://github.com/near/near-cli-rs/pull/263))
18
+
19
+ ## [0.7.2](https://github.com/near/near-cli-rs/compare/v0.7.1...v0.7.2) - 2023-11-21
20
+
21
+ ### Added
22
+ - Show hash-to-sign when using the sign_later transaction signature option ([#261](https://github.com/near/near-cli-rs/pull/261))
23
+
24
+ ## [0.7.1](https://github.com/near/near-cli-rs/compare/v0.7.0...v0.7.1) - 2023-11-17
25
+
26
+ ### Added
27
+ - add `--offline` for `sign-with-ledger` option ([#260](https://github.com/near/near-cli-rs/pull/260))
28
+ - Updated legacy command compatibility for near-cli (JS) for dev-deploy, validators, and staking commands ([#256](https://github.com/near/near-cli-rs/pull/256))
29
+
10
30
  ## [0.7.0](https://github.com/near/near-cli-rs/compare/v0.6.2...v0.7.0) - 2023-10-31
11
31
 
12
32
  ### Added
package/binary.js CHANGED
@@ -11,7 +11,7 @@ const error = (msg) => {
11
11
 
12
12
  const { version } = require("./package.json");
13
13
  const name = "near-cli-rs";
14
- const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.7.0";
14
+ const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.7.3";
15
15
 
16
16
  const supportedPlatforms = {
17
17
  "aarch64-apple-darwin": {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "near-cli-rs",
3
- "version": "0.7.0",
3
+ "version": "0.7.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "near-cli-rs",
9
- "version": "0.7.0",
9
+ "version": "0.7.3",
10
10
  "license": "MIT OR Apache-2.0",
11
11
  "hasInstallScript": true,
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "near-cli-rs",
3
- "version": "0.7.0",
3
+ "version": "0.7.3",
4
4
  "description": "human-friendly console utility that helps to interact with NEAR Protocol from command line.",
5
5
  "repository": "https://github.com/near/near-cli-rs",
6
6
  "homepage": "https://near.cli.rs",