From f839e0c1efc7814737abe6fcd552fe0429ba0c03 Mon Sep 17 00:00:00 2001
From: Vlad Frolov
Date: Wed, 22 Jan 2025 17:24:16 +0100
Subject: [PATCH] chore: release cargo-near 0.13.3, cargo-near-build 0.4.3
(#284)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## 🤖 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)
Changelog
## `cargo-near`
##
[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))
## `cargo-near-build`
##
[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)
---
This PR was generated with
[release-plz](https://github.com/release-plz/release-plz/).
---
CHANGELOG.md | 8 ++++++++
Cargo.lock | 4 ++--
cargo-near-build/CHANGELOG.md | 12 ++++++++++++
cargo-near-build/Cargo.toml | 2 +-
cargo-near/Cargo.toml | 4 ++--
integration-tests/Cargo.toml | 4 ++--
6 files changed, 27 insertions(+), 7 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc0b2c7f..1fd4cb13 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Cargo.lock b/Cargo.lock
index 461e2c83..2595e518 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -482,7 +482,7 @@ dependencies = [
[[package]]
name = "cargo-near"
-version = "0.13.2"
+version = "0.13.3"
dependencies = [
"base64 0.22.1",
"cargo-near-build",
@@ -514,7 +514,7 @@ dependencies = [
[[package]]
name = "cargo-near-build"
-version = "0.4.2"
+version = "0.4.3"
dependencies = [
"bon",
"bs58 0.5.1",
diff --git a/cargo-near-build/CHANGELOG.md b/cargo-near-build/CHANGELOG.md
index 5c3c3070..c6c18ac3 100644
--- a/cargo-near-build/CHANGELOG.md
+++ b/cargo-near-build/CHANGELOG.md
@@ -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
diff --git a/cargo-near-build/Cargo.toml b/cargo-near-build/Cargo.toml
index 609732b9..701e151f 100644
--- a/cargo-near-build/Cargo.toml
+++ b/cargo-near-build/Cargo.toml
@@ -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"
diff --git a/cargo-near/Cargo.toml b/cargo-near/Cargo.toml
index 7d03ab0f..de2ef63f 100644
--- a/cargo-near/Cargo.toml
+++ b/cargo-near/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cargo-near"
-version = "0.13.2"
+version = "0.13.3"
authors = ["Near Inc "]
edition = "2021"
rust-version = "1.81.0"
@@ -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",
] }
diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml
index 3fc9cc2b..92d96307 100644
--- a/integration-tests/Cargo.toml
+++ b/integration-tests/Cargo.toml
@@ -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"
@@ -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"