near-cli-rs 0.10.2 → 0.11.1
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 +24 -0
- package/binary.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.11.1](https://github.com/near/near-cli-rs/compare/v0.11.0...v0.11.1) - 2024-07-01
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Added loading indicators for "contract" group commands ([#357](https://github.com/near/near-cli-rs/pull/357))
|
|
14
|
+
- Added loading indicators for "staking" group commands ([#356](https://github.com/near/near-cli-rs/pull/356))
|
|
15
|
+
- Added loading indicators for "tokens" group commands ([#355](https://github.com/near/near-cli-rs/pull/355))
|
|
16
|
+
- Added loading indicators for "accounts" group commands ([#352](https://github.com/near/near-cli-rs/pull/352))
|
|
17
|
+
|
|
18
|
+
### Other
|
|
19
|
+
- replace `ed25519-dalek` 1 -> 2 major version ([#359](https://github.com/near/near-cli-rs/pull/359))
|
|
20
|
+
|
|
21
|
+
## [0.11.0](https://github.com/near/near-cli-rs/compare/v0.10.2...v0.11.0) - 2024-06-19
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Added loading indicators to wait for the view-account-summary command ([#349](https://github.com/near/near-cli-rs/pull/349))
|
|
25
|
+
- Added loading indicators to wait for the create-account (sponsor-by-faucet-service) command ([#339](https://github.com/near/near-cli-rs/pull/339))
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- Do not fail view-account-summary command if we could not retrieve access keys list ([#344](https://github.com/near/near-cli-rs/pull/344))
|
|
29
|
+
|
|
30
|
+
### Other
|
|
31
|
+
- [**breaking**] upgraded near-dependencies to the 0.23 version ([#350](https://github.com/near/near-cli-rs/pull/350))
|
|
32
|
+
- Provide instructions that help to resolve a problem with missing keychain ([#347](https://github.com/near/near-cli-rs/pull/347))
|
|
33
|
+
|
|
10
34
|
## [0.10.2](https://github.com/near/near-cli-rs/compare/v0.10.1...v0.10.2) - 2024-05-21
|
|
11
35
|
|
|
12
36
|
### Fixed
|
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.
|
|
14
|
+
const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.11.1";
|
|
15
15
|
|
|
16
16
|
const builder_glibc_major_version = 2;
|
|
17
17
|
const builder_glibc_minor_version = 31;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "near-cli-rs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
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.11.1",
|
|
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.
|
|
3
|
+
"version": "0.11.1",
|
|
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",
|