near-cli-rs 0.17.0 → 0.18.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,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.18.0](https://github.com/near/near-cli-rs/compare/v0.17.0...v0.18.0) - 2025-01-20
11
+
12
+ ### Added
13
+
14
+ - Added the ability to get a public key for an account (#436)
15
+
16
+ ### Other
17
+
18
+ - fixed migration. Added migration saving to be more clear (#434)
19
+ - handle new rate-limits for querying pools (#433)
20
+ - Extended the documentation for building NEAR CLI from the source code (#430)
21
+
10
22
  ## [0.17.0](https://github.com/near/near-cli-rs/compare/v0.16.1...v0.17.0) - 2024-12-16
11
23
 
12
24
  ### Added
package/README.md CHANGED
@@ -68,6 +68,8 @@ https://github.com/user-attachments/assets/4a7e4633-1957-4dc2-a032-827fa9c06c29
68
68
 
69
69
  Install it with `cargo`, just make sure you have [Rust](https://rustup.rs) installed on your computer.
70
70
 
71
+ > NOTE: On Linux, near-cli-rs is built with Ledger devices support by default, and that requires `libudev-dev` package. On Debian/Ubuntu, install it with `apt install libudev-dev`.
72
+
71
73
  ```bash
72
74
  cargo install near-cli-rs
73
75
  ```
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT OR Apache-2.0",
25
25
  "name": "near-cli-rs",
26
- "version": "0.17.0"
26
+ "version": "0.18.0"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "dependencies": {
@@ -711,5 +711,5 @@
711
711
  }
712
712
  },
713
713
  "requires": true,
714
- "version": "0.17.0"
714
+ "version": "0.18.0"
715
715
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/near/near-cli-rs/releases/download/v0.17.0",
2
+ "artifactDownloadUrl": "https://github.com/near/near-cli-rs/releases/download/v0.18.0",
3
3
  "bin": {
4
4
  "near": "run-near.js"
5
5
  },
@@ -87,7 +87,7 @@
87
87
  "zipExt": ".tar.gz"
88
88
  }
89
89
  },
90
- "version": "0.17.0",
90
+ "version": "0.18.0",
91
91
  "volta": {
92
92
  "node": "18.14.1",
93
93
  "npm": "9.5.0"