Skip to content

Commit f839e0c

Browse files
authored
chore: release cargo-near 0.13.3, cargo-near-build 0.4.3 (#284)
## πŸ€– New release * `cargo-near`: 0.13.2 -> 0.13.3 (βœ“ API compatible changes) * `cargo-near-build`: 0.4.2 -> 0.4.3 (βœ“ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> ## `cargo-near` <blockquote> ## [0.13.3](cargo-near-v0.13.2...cargo-near-v0.13.3) - 2025-01-22 ### Other - update near-cli-rs to 0.18.0 (#293) - update `cargo near new` template `image` and `image_digest` ([#288](#288)) - update `cargo near new` template `image` and `image_digest` ([#283](#283)) </blockquote> ## `cargo-near-build` <blockquote> ## [0.4.3](cargo-near-build-v0.4.2...cargo-near-build-v0.4.3) - 2025-01-22 ### Fixed - remove from env CARGO_ENCODED_RUSTFLAGS for easier nested builds, simplify RUSTFLAGS computation rule (#289) ### Other - optimize out retriggering 2nd stage of build + of wasmopt stage in tests context (#292) - update `cargo near new` template `image` and `image_digest` ([#288](#288)) - unpin `cc` after issue resolution (#285) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).
1 parent 4c97799 commit f839e0c

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

β€ŽCHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.13.3](https://github.com/near/cargo-near/compare/cargo-near-v0.13.2...cargo-near-v0.13.3) - 2025-01-22
11+
12+
### Other
13+
14+
- update near-cli-rs to 0.18.0 (#293)
15+
- update `cargo near new` template `image` and `image_digest` ([#288](https://github.com/near/cargo-near/pull/288))
16+
- update `cargo near new` template `image` and `image_digest` ([#283](https://github.com/near/cargo-near/pull/283))
17+
1018
## [0.13.2](https://github.com/near/cargo-near/compare/cargo-near-v0.13.1...cargo-near-v0.13.2) - 2024-12-19
1119

1220
### Other

β€ŽCargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žcargo-near-build/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.3](https://github.com/near/cargo-near/compare/cargo-near-build-v0.4.2...cargo-near-build-v0.4.3) - 2025-01-22
11+
12+
### Fixed
13+
14+
- remove from env CARGO_ENCODED_RUSTFLAGS for easier nested builds, simplify RUSTFLAGS computation rule (#289)
15+
16+
### Other
17+
18+
- optimize out retriggering 2nd stage of build + of wasmopt stage in tests context (#292)
19+
- update `cargo near new` template `image` and `image_digest` ([#288](https://github.com/near/cargo-near/pull/288))
20+
- unpin `cc` after issue resolution (#285)
21+
1022
## [0.4.2](https://github.com/near/cargo-near/compare/cargo-near-build-v0.4.1...cargo-near-build-v0.4.2) - 2024-12-19
1123

1224
### Other

β€Žcargo-near-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-near-build"
33
edition = "2021"
4-
version = "0.4.2"
4+
version = "0.4.3"
55
description = "Library for building Rust smart contracts on NEAR, basis of `cargo-near` crate/CLI"
66
repository = "https://github.com/near/cargo-near"
77
license = "MIT OR Apache-2.0"

β€Žcargo-near/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-near"
3-
version = "0.13.2"
3+
version = "0.13.3"
44
authors = ["Near Inc <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.81.0"
@@ -23,7 +23,7 @@ license = false
2323
eula = false
2424

2525
[dependencies]
26-
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build", features = [
26+
cargo-near-build = { version = "0.4.3", path = "../cargo-near-build", features = [
2727
"abi_build",
2828
"docker",
2929
] }

β€Žintegration-tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
[dependencies]
88
const_format = "0.2"
99
color-eyre = "0.6"
10-
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build" }
10+
cargo-near-build = { version = "0.4.3", path = "../cargo-near-build" }
1111
cargo-near = { path = "../cargo-near" }
1212
colored = "2.0"
1313
tracing = "0.1.40"
@@ -18,7 +18,7 @@ syn = "2"
1818
borsh = { version = "1.0.0", features = ["derive", "unstable__schema"] }
1919
camino = "1.1.1"
2020
cargo-near = { path = "../cargo-near" }
21-
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build", features = [
21+
cargo-near-build = { version = "0.4.3", path = "../cargo-near-build", features = [
2222
"test_code",
2323
] }
2424
color-eyre = "0.6"

0 commit comments

Comments
Β (0)