near-cli-rs 0.12.0 → 0.13.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,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.13.0](https://github.com/near/near-cli-rs/compare/v0.12.0...v0.13.0) - 2024-07-30
11
+
12
+ ### Added
13
+ - Automatically exec legacy JS CLI commands for full backward compatibility ([#366](https://github.com/near/near-cli-rs/pull/366))
14
+ - Added the ability to use the TEACH-ME mode ([#360](https://github.com/near/near-cli-rs/pull/360))
15
+ - Added a new subcommand to edit configuration parameters ([#367](https://github.com/near/near-cli-rs/pull/367))
16
+
17
+ ### Fixed
18
+ - Fixed the fallback implementation of fetching active staking pools ([#369](https://github.com/near/near-cli-rs/pull/369))
19
+
20
+ ### Other
21
+ - Fixed typos in user prompts and the guide ([#372](https://github.com/near/near-cli-rs/pull/372))
22
+
10
23
  ## [0.12.0](https://github.com/near/near-cli-rs/compare/v0.11.1...v0.12.0) - 2024-07-09
11
24
 
12
25
  ### 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.12.0";
14
+ const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.13.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.12.0",
3
+ "version": "0.13.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "near-cli-rs",
9
- "version": "0.12.0",
9
+ "version": "0.13.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.12.0",
3
+ "version": "0.13.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",