Skip to content

Commit 7dc8b58

Browse files
authored
chore: release 0.13.2, cargo-near-build 0.4.2 (#274)
## πŸ€– New release * `cargo-near`: 0.13.1 -> 0.13.2 (βœ“ API compatible changes) * `cargo-near-build`: 0.4.1 -> 0.4.2 (βœ“ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> ## `cargo-near` <blockquote> ## [0.13.2](cargo-near-v0.13.1...cargo-near-v0.13.2) - 2024-12-19 ### Other - near-* crates to 0.28 (#279) - update `cargo near new` template `image` and `image_digest` ([#273](#273)) </blockquote> ## `cargo-near-build` <blockquote> ## [0.4.2](cargo-near-build-v0.4.1...cargo-near-build-v0.4.2) - 2024-12-19 ### Other - update deps , pin `cc` (#282) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).
1 parent d8d699e commit 7dc8b58

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

β€ŽCHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.13.2](https://github.com/near/cargo-near/compare/cargo-near-v0.13.1...cargo-near-v0.13.2) - 2024-12-19
11+
12+
### Other
13+
14+
- near-* crates to 0.28 (#279)
15+
- update `cargo near new` template `image` and `image_digest` ([#273](https://github.com/near/cargo-near/pull/273))
16+
1017
## [0.13.1](https://github.com/near/cargo-near/compare/cargo-near-v0.13.0...cargo-near-v0.13.1) - 2024-12-18
1118

1219
### 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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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
11+
12+
### Other
13+
14+
- update deps , pin `cc` (#282)
15+
1016
## [0.4.1](https://github.com/near/cargo-near/compare/cargo-near-build-v0.4.0...cargo-near-build-v0.4.1) - 2024-12-18
1117

1218
### Fixed

β€Ž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.1"
4+
version = "0.4.2"
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.1"
3+
version = "0.13.2"
44
authors = ["Near Inc <hello@nearprotocol.com>"]
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.1", path = "../cargo-near-build", features = [
26+
cargo-near-build = { version = "0.4.2", 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.1", path = "../cargo-near-build" }
10+
cargo-near-build = { version = "0.4.2", 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.1", path = "../cargo-near-build", features = [
21+
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build", features = [
2222
"test_code",
2323
] }
2424
color-eyre = "0.6"

0 commit comments

Comments
Β (0)