near-cli-rs 0.3.4 → 0.3.5

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.
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.5](https://github.com/near/near-cli-rs/compare/v0.3.4...v0.3.5) - 2023-04-21
11
+
12
+ ### Fixed
13
+ - Fixed self-update to use the proper archive name generated by cargo-dist
14
+
10
15
  ## [0.3.4](https://github.com/near/near-cli-rs/compare/v0.3.3...v0.3.4) - 2023-04-20
11
16
 
12
17
  ### Other
@@ -12,27 +12,27 @@ const error = (msg) => {
12
12
  const { version } = require("./package.json");
13
13
  // These are injected by cargo-dist
14
14
  const name = "near-cli-rs";
15
- const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.3.4";
15
+ const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.3.5";
16
16
 
17
17
  // These are injected by cargo-dist
18
18
  const supportedPlatforms = {
19
19
  "aarch64-apple-darwin": {
20
- "artifact_name": "near-cli-rs-v0.3.4-aarch64-apple-darwin.tar.gz",
20
+ "artifact_name": "near-cli-rs-v0.3.5-aarch64-apple-darwin.tar.gz",
21
21
  "bins": ["near"],
22
22
  "zip_ext": ".tar.gz"
23
23
  },
24
24
  "x86_64-apple-darwin": {
25
- "artifact_name": "near-cli-rs-v0.3.4-x86_64-apple-darwin.tar.gz",
25
+ "artifact_name": "near-cli-rs-v0.3.5-x86_64-apple-darwin.tar.gz",
26
26
  "bins": ["near"],
27
27
  "zip_ext": ".tar.gz"
28
28
  },
29
29
  "x86_64-pc-windows-msvc": {
30
- "artifact_name": "near-cli-rs-v0.3.4-x86_64-pc-windows-msvc.tar.gz",
30
+ "artifact_name": "near-cli-rs-v0.3.5-x86_64-pc-windows-msvc.tar.gz",
31
31
  "bins": ["near.exe"],
32
32
  "zip_ext": ".tar.gz"
33
33
  },
34
34
  "x86_64-unknown-linux-gnu": {
35
- "artifact_name": "near-cli-rs-v0.3.4-x86_64-unknown-linux-gnu.tar.gz",
35
+ "artifact_name": "near-cli-rs-v0.3.5-x86_64-unknown-linux-gnu.tar.gz",
36
36
  "bins": ["near"],
37
37
  "zip_ext": ".tar.gz"
38
38
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "near-cli-rs",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "near-cli-rs",
9
- "version": "0.3.4",
9
+ "version": "0.3.5",
10
10
  "license": "MIT OR Apache-2.0",
11
11
  "hasInstallScript": true,
12
12
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "near-cli-rs",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
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",