Skip to content

Commit

Permalink
chore: release cargo-near 0.13.3, cargo-near-build 0.4.3 (#284)
Browse files Browse the repository at this point in the history
## πŸ€– 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/).
  • Loading branch information
frol authored Jan 22, 2025
1 parent 4c97799 commit f839e0c
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.3](https://github.com/near/cargo-near/compare/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](https://github.com/near/cargo-near/pull/288))
- update `cargo near new` template `image` and `image_digest` ([#283](https://github.com/near/cargo-near/pull/283))

## [0.13.2](https://github.com/near/cargo-near/compare/cargo-near-v0.13.1...cargo-near-v0.13.2) - 2024-12-19

### Other
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions cargo-near-build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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

### 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](https://github.com/near/cargo-near/pull/288))
- unpin `cc` after issue resolution (#285)

## [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

### Other
Expand Down
2 changes: 1 addition & 1 deletion cargo-near-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cargo-near-build"
edition = "2021"
version = "0.4.2"
version = "0.4.3"
description = "Library for building Rust smart contracts on NEAR, basis of `cargo-near` crate/CLI"
repository = "https://github.com/near/cargo-near"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions cargo-near/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-near"
version = "0.13.2"
version = "0.13.3"
authors = ["Near Inc <[email protected]>"]
edition = "2021"
rust-version = "1.81.0"
Expand All @@ -23,7 +23,7 @@ license = false
eula = false

[dependencies]
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build", features = [
cargo-near-build = { version = "0.4.3", path = "../cargo-near-build", features = [
"abi_build",
"docker",
] }
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[dependencies]
const_format = "0.2"
color-eyre = "0.6"
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build" }
cargo-near-build = { version = "0.4.3", path = "../cargo-near-build" }
cargo-near = { path = "../cargo-near" }
colored = "2.0"
tracing = "0.1.40"
Expand All @@ -18,7 +18,7 @@ syn = "2"
borsh = { version = "1.0.0", features = ["derive", "unstable__schema"] }
camino = "1.1.1"
cargo-near = { path = "../cargo-near" }
cargo-near-build = { version = "0.4.2", path = "../cargo-near-build", features = [
cargo-near-build = { version = "0.4.3", path = "../cargo-near-build", features = [
"test_code",
] }
color-eyre = "0.6"
Expand Down

0 comments on commit f839e0c

Please sign in to comment.