-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 🤖 New release * `cargo-near`: 0.5.1 -> 0.5.2 (⚠️ API breaking changes) ###⚠️ `cargo-near` breaking changes ``` --- failure struct_missing: pub struct removed or renamed --- Description: A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.27.0/src/lints/struct_missing.ron Failed in: struct cargo_near::types::utf8_path_buf::Utf8PathBufInner, previously in file /tmp/.tmpdQgrcT/cargo-near/src/types/utf8_path_buf.rs:13 ``` <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.5.2](cargo-near-v0.5.1...cargo-near-v0.5.2) - 2024-01-27 ### Other - Updated "feature flag" for near-cli-rs (ledger) ([#126](#126)) - Updated near-sdk-rs to 5.0.0-alpha.2 in the new project template ([#127](#127)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --------- Signed-off-by: Vlad <[email protected]> Co-authored-by: Vlad <[email protected]>
- Loading branch information
Showing
6 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-near" | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.72.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
[workspace] | ||
git_release_enable = false | ||
# Use `cargo-near` crate CHANGELOG as top-level one | ||
changelog_update = false | ||
|
||
[[package]] | ||
name = "cargo-near" | ||
changelog_update = true | ||
changelog_path = "./CHANGELOG.md" |