diff --git a/Cargo.toml b/Cargo.toml index 0a49b9c..e574e2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ resolver = "3" version = "0.15.0" [workspace.package] -version = "0.5.1" +version = "0.5.2" edition = "2024" authors = ["Aurora Labs "] # An update of the MSRV requires updating: diff --git a/near-plugins-derive/CHANGELOG.md b/near-plugins-derive/CHANGELOG.md index 577848c..d8a66a5 100644 --- a/near-plugins-derive/CHANGELOG.md +++ b/near-plugins-derive/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/near/near-plugins/compare/near-plugins-derive-v0.5.1...near-plugins-derive-v0.5.2) - 2026-04-10 + +### Fixed + +- use path+version deps for inter-crate references to fix crates.io publishing ([#187](https://github.com/near/near-plugins/pull/187)) + ## [0.5.1](https://github.com/near/near-plugins/compare/near-plugins-derive-v0.1.0...near-plugins-derive-v0.5.1) - 2026-04-08 ### Added diff --git a/near-plugins-derive/Cargo.toml b/near-plugins-derive/Cargo.toml index ce39c34..5baa00f 100644 --- a/near-plugins-derive/Cargo.toml +++ b/near-plugins-derive/Cargo.toml @@ -23,7 +23,7 @@ proc-macro-crate.workspace = true [dev-dependencies] anyhow.workspace = true -near-plugins = { path = "../near-plugins/", version = "0.5.1" } +near-plugins = { path = "../near-plugins/", version = "0.5.2" } near-sdk = { workspace = true, features = ["unit-testing"] } tokio.workspace = true near-workspaces.workspace = true diff --git a/near-plugins/Cargo.toml b/near-plugins/Cargo.toml index 546b467..8f79691 100644 --- a/near-plugins/Cargo.toml +++ b/near-plugins/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] bitflags.workspace = true near-sdk.workspace = true -near-plugins-derive = { path = "../near-plugins-derive/", version = "0.5.1" } +near-plugins-derive = { path = "../near-plugins-derive/", version = "0.5.2" } serde.workspace = true [dev-dependencies]