cargo-near 0.13.6 → 0.14.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 +17 -0
- package/README.md +5 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.14.1](https://github.com/near/cargo-near/compare/cargo-near-v0.14.0...cargo-near-v0.14.1) - 2025-04-21
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- doc publish. Change reference to `latest` instead of specific version ([#329](https://github.com/near/cargo-near/pull/329))
|
|
15
|
+
|
|
16
|
+
## [0.14.0](https://github.com/near/cargo-near/compare/cargo-near-v0.13.6...cargo-near-v0.14.0) - 2025-04-21
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- [**breaking**] pass in external nep330_wasm_output path from env as override ([#328](https://github.com/near/cargo-near/pull/328))
|
|
21
|
+
- populate `output_wasm_path` into `ContractSourceMetadata` ([#323](https://github.com/near/cargo-near/pull/323))
|
|
22
|
+
|
|
23
|
+
### Other
|
|
24
|
+
|
|
25
|
+
- update `cargo near new` template `image` and `image_digest` ([#327](https://github.com/near/cargo-near/pull/327))
|
|
26
|
+
|
|
10
27
|
## [0.13.6](https://github.com/near/cargo-near/compare/cargo-near-v0.13.5...cargo-near-v0.13.6) - 2025-04-08
|
|
11
28
|
|
|
12
29
|
### Added
|
package/README.md
CHANGED
|
@@ -205,6 +205,11 @@ This forwards to [reproducible-wasm](#reproducible-wasm) variant of `build` comm
|
|
|
205
205
|
2. has been pushed to remote repository, identified by
|
|
206
206
|
[`package.repository`](https://github.com/near/cargo-near/blob/main/cargo-near/src/commands/new/new-project-template/Cargo.template.toml#L9).
|
|
207
207
|
|
|
208
|
+
## Factories
|
|
209
|
+
|
|
210
|
+
See [`cargo_near_build::extended`](https://docs.rs/cargo-near-build/latest/cargo_near_build/extended/index.html) module documentation on
|
|
211
|
+
how to write `build.rs` for subcontracts.
|
|
212
|
+
|
|
208
213
|
## Special `cargo` environment variables
|
|
209
214
|
|
|
210
215
|
Both of the following are mentioned on https://doc.rust-lang.org/cargo/reference/config.html#buildrustflags
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT OR Apache-2.0",
|
|
25
25
|
"name": "cargo-near",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.14.1"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"dependencies": {
|
|
@@ -713,5 +713,5 @@
|
|
|
713
713
|
}
|
|
714
714
|
},
|
|
715
715
|
"requires": true,
|
|
716
|
-
"version": "0.
|
|
716
|
+
"version": "0.14.1"
|
|
717
717
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/near/cargo-near/releases/download/cargo-near-v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/near/cargo-near/releases/download/cargo-near-v0.14.1",
|
|
3
3
|
"author": "Near Inc <hello@nearprotocol.com>",
|
|
4
4
|
"bin": {
|
|
5
5
|
"cargo-near": "run-cargo-near.js"
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"zipExt": ".tar.gz"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
-
"version": "0.
|
|
97
|
+
"version": "0.14.1",
|
|
98
98
|
"volta": {
|
|
99
99
|
"node": "18.14.1",
|
|
100
100
|
"npm": "9.5.0"
|