near-cli-rs 0.13.0 → 0.14.0

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,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.14.0](https://github.com/near/near-cli-rs/compare/v0.13.0...v0.14.0) - 2024-08-13
11
+
12
+ ### Fixed
13
+ - Require at least one access key to be selected in interactive mode when deleting a key ([#385](https://github.com/near/near-cli-rs/pull/385))
14
+ - Handle delegated stake errors gracefully and display a warning message instead of failing the view-account-summary command completely ([#382](https://github.com/near/near-cli-rs/pull/382))
15
+ - Entering the name of the function in interactive mode ([#379](https://github.com/near/near-cli-rs/pull/379))
16
+ - Fixed a typo in `inspect` output about missing ABI support ([#374](https://github.com/near/near-cli-rs/pull/374))
17
+
18
+ ### Other
19
+ - removed media from the package ([#388](https://github.com/near/near-cli-rs/pull/388))
20
+ - updated near-* to 0.24.0, bumped up rust version ([#381](https://github.com/near/near-cli-rs/pull/381))
21
+ - Added videos to the README for installation process on Windows ([#378](https://github.com/near/near-cli-rs/pull/378))
22
+ - Cleaned up error message reporting by disabling env section of color_eyre report ([#380](https://github.com/near/near-cli-rs/pull/380))
23
+
10
24
  ## [0.13.0](https://github.com/near/near-cli-rs/compare/v0.12.0...v0.13.0) - 2024-07-30
11
25
 
12
26
  ### Added
package/README.md CHANGED
@@ -13,15 +13,26 @@ Just run `near` and let it guide you through!
13
13
  Visit [Releases page](https://github.com/near/near-cli-rs/releases/) to see the latest updates.
14
14
 
15
15
  <details>
16
- <summary>Install prebuilt binaries via shell script (macOS, Linux, WSL)</summary>
16
+ <summary>Install via Windows Installer (Windows)</summary>
17
+
18
+
19
+ https://github.com/user-attachments/assets/607f797b-0412-4741-984b-6b6032d05262
20
+
21
+ </details>
22
+
23
+ <details>
24
+ <summary>Install via powershell script (Windows)</summary>
17
25
 
18
26
  ```sh
19
- curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-installer.sh | sh
27
+ irm https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-installer.ps1 | iex
20
28
  ```
29
+
30
+ https://github.com/user-attachments/assets/7d5d090e-4885-4c27-9d0f-045905952071
31
+
21
32
  </details>
22
33
 
23
34
  <details>
24
- <summary>Install prebuilt binaries via powershell script (Windows)</summary>
35
+ <summary>Install via shell script (macOS, Linux, Windows/WSL)</summary>
25
36
 
26
37
  ```sh
27
38
  irm https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-installer.ps1 | iex
@@ -29,7 +40,7 @@ irm https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-ins
29
40
  </details>
30
41
 
31
42
  <details>
32
- <summary>Run prebuilt binaries with npx (Node.js)</summary>
43
+ <summary>Run via npx (Node.js on Windows, Linux, macOS)</summary>
33
44
 
34
45
  ```sh
35
46
  npx near-cli-rs
@@ -37,7 +48,7 @@ npx near-cli-rs
37
48
  </details>
38
49
 
39
50
  <details>
40
- <summary>Install prebuilt binaries into your npm project (Node.js)</summary>
51
+ <summary>Use in package.json scripts (Node.js on Windows, Linux, macOS)</summary>
41
52
 
42
53
  ```sh
43
54
  npm install near-cli-rs
@@ -45,7 +56,15 @@ npm install near-cli-rs
45
56
  </details>
46
57
 
47
58
  <details>
48
- <summary>Compile and install from the source code (Cargo)</summary>
59
+ <summary>Get a portable version (Windows, Linux, macOS)</summary>
60
+
61
+
62
+ https://github.com/user-attachments/assets/4a7e4633-1957-4dc2-a032-827fa9c06c29
63
+
64
+ </details>
65
+
66
+ <details>
67
+ <summary>Compile and install from the source code (Cargo on Windows, Linux, macOS)</summary>
49
68
 
50
69
  Install it with `cargo`, just make sure you have [Rust](https://rustup.rs) installed on your computer.
51
70
 
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.13.0";
14
+ const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.14.0";
15
15
 
16
16
  const builder_glibc_major_version = 2;
17
17
  const builder_glibc_minor_version = 31;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "near-cli-rs",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "near-cli-rs",
9
- "version": "0.13.0",
9
+ "version": "0.14.0",
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.13.0",
3
+ "version": "0.14.0",
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",