Skip to content

Commit

Permalink
chore: release (#214)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `cargo-near`: 0.8.2 -> 0.9.0
* `cargo-near-build`: 0.1.0 -> 0.1.1

<details><summary><i><b>Changelog</b></i></summary><p>

## `cargo-near`
<blockquote>

##
[0.9.0](cargo-near-v0.8.2...cargo-near-v0.9.0)
- 2024-09-12

### Added

- Fixed GitHub CI staging workflow generated by `cargo near new` command
to work correctly with docker case
([#193](#193))
- 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](#198))
- Added tracking of `cargo near new` usage to collect statistics of the
command usage ([#192](#192))

### Fixed

- Addressed warnings in `cargo build -p cargo-near-build` cmd in
releaze-plz flow ([#212](#212))

### Other

- Updated near-* dependencies to 0.26 release
([#220](#220))
- Use "tracing" for logging and loading indicators
([#216](#216))
- update docker image and sdk version in `cargo near new` template
([#218](#218))
- [**breaking**] updates near-* packages to 0.25 version. Updates
near-sdk to 5.4 ([#215](#215))
</blockquote>

## `cargo-near-build`
<blockquote>

##
[0.1.1](cargo-near-build-v0.1.0...cargo-near-build-v0.1.1)
- 2024-09-12

### Added

- Fixed GitHub CI staging workflow generated by `cargo near new` command
to work correctly with docker case
([#193](#193))

### Other

- Use "tracing" for logging and loading indicators
([#216](#216))
- fix clippy ([#219](#219))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
  • Loading branch information
frol authored Sep 13, 2024
1 parent c8ecdc8 commit c9210e7
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 22 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0](https://github.com/near/cargo-near/compare/cargo-near-v0.8.2...cargo-near-v0.9.0) - 2024-09-12

### Added

- Fixed GitHub CI staging workflow generated by `cargo near new` command to work correctly with docker case ([#193](https://github.com/near/cargo-near/pull/193))
- 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))

### Fixed

- Addressed warnings in `cargo build -p cargo-near-build` cmd in releaze-plz flow ([#212](https://github.com/near/cargo-near/pull/212))

### Other

- Updated near-* dependencies to 0.26 release ([#220](https://github.com/near/cargo-near/pull/220))
- Use "tracing" for logging and loading indicators ([#216](https://github.com/near/cargo-near/pull/216))
- update docker image and sdk version in `cargo near new` template ([#218](https://github.com/near/cargo-near/pull/218))
- [**breaking**] updates near-* packages to 0.25 version. Updates near-sdk to 5.4 ([#215](https://github.com/near/cargo-near/pull/215))

## [0.8.2](https://github.com/near/cargo-near/compare/cargo-near-v0.8.1...cargo-near-v0.8.2) - 2024-08-16

### Other
Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

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

19 changes: 19 additions & 0 deletions cargo-near-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1](https://github.com/near/cargo-near/compare/cargo-near-build-v0.1.0...cargo-near-build-v0.1.1) - 2024-09-12

### Added

- Fixed GitHub CI staging workflow generated by `cargo near new` command to work correctly with docker case ([#193](https://github.com/near/cargo-near/pull/193))

### Other

- Use "tracing" for logging and loading indicators ([#216](https://github.com/near/cargo-near/pull/216))
- fix clippy ([#219](https://github.com/near/cargo-near/pull/219))
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.1.0"
version = "0.1.1"
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.8.2"
version = "0.9.0"
authors = ["Near Inc <hello@nearprotocol.com>"]
edition = "2021"
rust-version = "1.78.0"
Expand All @@ -23,7 +23,7 @@ license = false
eula = false

[dependencies]
cargo-near-build = { version = "0.1.0", path = "../cargo-near-build", features = [
cargo-near-build = { version = "0.1.1", 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 @@ -6,13 +6,13 @@ publish = false

[dependencies]
const_format = "0.2"
cargo-near-build = { version = "0.1.0", path = "../cargo-near-build" }
cargo-near-build = { version = "0.1.1", path = "../cargo-near-build" }

[dev-dependencies]
borsh = { version = "1.0.0", features = ["derive", "unstable__schema"] }
camino = "1.1.1"
cargo-near = { path = "../cargo-near" }
cargo-near-build = { version = "0.1.0", path = "../cargo-near-build" }
cargo-near-build = { version = "0.1.1", path = "../cargo-near-build" }
color-eyre = "0.6"
function_name = "0.3"
git2 = "0.19"
Expand Down

0 comments on commit c9210e7

Please sign in to comment.