From 55ecce7036bb398892f38c72e0912748c70d4354 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dj8yf0=CE=BCl?= <26653921+dj8yfo@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:38:44 +0300 Subject: [PATCH] chore: release --- CHANGELOG.md | 6 +++++ Cargo.lock | 58 +++++++++++++++++++++---------------------- cargo-near/Cargo.toml | 2 +- 3 files changed, 36 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ed14dc8..013ef366 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.3](https://github.com/near/cargo-near/compare/cargo-near-v0.8.2...cargo-near-v0.8.3) - 2024-09-02 + +### Added +- Extracted cargo-near-build into a standalone crate to be able to use it in near-workspaces and other places without the rest of the heavy dependencies of cargo-near ([#198](https://github.com/near/cargo-near/pull/198)) +- Added tracking of `cargo near new` usage to collect statistics of the command usage ([#192](https://github.com/near/cargo-near/pull/192)) + ## [0.8.2](https://github.com/near/cargo-near/compare/cargo-near-v0.8.1...cargo-near-v0.8.2) - 2024-08-16 ### Other diff --git a/Cargo.lock b/Cargo.lock index 4c738735..0788df2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -565,33 +565,6 @@ dependencies = [ "serde", ] -[[package]] -name = "cargo-near" -version = "0.8.2" -dependencies = [ - "cargo-near-build", - "clap", - "color-eyre", - "colored", - "derive_more", - "env_logger", - "inquire", - "interactive-clap", - "interactive-clap-derive", - "linked-hash-map", - "log", - "names", - "near-cli-rs", - "reqwest", - "serde", - "shell-words", - "strum", - "strum_macros", - "tokio", - "tracing", - "tracing-test", -] - [[package]] name = "cargo-near" version = "0.8.2" @@ -637,6 +610,33 @@ dependencies = [ "zstd 0.13.2", ] +[[package]] +name = "cargo-near" +version = "0.8.3" +dependencies = [ + "cargo-near-build", + "clap", + "color-eyre", + "colored", + "derive_more", + "env_logger", + "inquire", + "interactive-clap", + "interactive-clap-derive", + "linked-hash-map", + "log", + "names", + "near-cli-rs", + "reqwest", + "serde", + "shell-words", + "strum", + "strum_macros", + "tokio", + "tracing", + "tracing-test", +] + [[package]] name = "cargo-near-build" version = "0.1.0" @@ -673,7 +673,7 @@ version = "0.1.0" dependencies = [ "borsh", "camino", - "cargo-near 0.8.2", + "cargo-near 0.8.3", "cargo-near-build", "color-eyre", "const_format", @@ -3137,7 +3137,7 @@ dependencies = [ "async-trait", "base64 0.22.1", "bs58 0.5.1", - "cargo-near 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cargo-near 0.8.2", "chrono", "fs2", "json-patch", diff --git a/cargo-near/Cargo.toml b/cargo-near/Cargo.toml index f4f35992..89bb2386 100644 --- a/cargo-near/Cargo.toml +++ b/cargo-near/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-near" -version = "0.8.2" +version = "0.8.3" authors = ["Near Inc "] edition = "2021" rust-version = "1.78.0"