near-cli-rs 0.3.4 → 0.4.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.
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/CHANGELOG.md +15 -0
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/binary.js +5 -5
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/npm-shrinkwrap.json +2 -2
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/package.json +1 -1
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/.gitignore +0 -0
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/LICENSE-APACHE +0 -0
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/LICENSE-MIT +0 -0
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/README.md +0 -0
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/install.js +0 -0
- {near-cli-rs-v0.3.4-npm-package → near-cli-rs-v0.4.0-npm-package}/run.js +0 -0
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.4.0](https://github.com/near/near-cli-rs/compare/v0.3.5...v0.4.0) - 2023-05-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Meta-Transactions support (#189)
|
|
14
|
+
- Support for adding key from Ledger hardware wallet (#188)
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- fixed call function with non-JSON arguments being incorrectly displayed as `null` (#187)
|
|
18
|
+
- pass right token to release-plz action (#185)
|
|
19
|
+
|
|
20
|
+
## [0.3.5](https://github.com/near/near-cli-rs/compare/v0.3.4...v0.3.5) - 2023-04-21
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Fixed self-update to use the proper archive name generated by cargo-dist
|
|
24
|
+
|
|
10
25
|
## [0.3.4](https://github.com/near/near-cli-rs/compare/v0.3.3...v0.3.4) - 2023-04-20
|
|
11
26
|
|
|
12
27
|
### 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.
|
|
15
|
+
const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.4.0";
|
|
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.
|
|
20
|
+
"artifact_name": "near-cli-rs-v0.4.0-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.
|
|
25
|
+
"artifact_name": "near-cli-rs-v0.4.0-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.
|
|
30
|
+
"artifact_name": "near-cli-rs-v0.4.0-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.
|
|
35
|
+
"artifact_name": "near-cli-rs-v0.4.0-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
|
+
"version": "0.4.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "near-cli-rs",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.4.0",
|
|
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
|
+
"version": "0.4.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",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|