From 5346c8378052a93b138c9b1d7b5aeda45570f3ba Mon Sep 17 00:00:00 2001 From: r-near <163825889+r-near@users.noreply.github.com> Date: Fri, 27 Mar 2026 00:28:47 -0700 Subject: [PATCH 1/2] chore: bump version to 0.6.0 and fix repository URLs v0.5.0 was already released on Mar 5, 2025. Bump to 0.6.0 so release-plz can create a proper release for the changes since then. Also update repository and homepage URLs from aurora-is-near to Near-One. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bca8548..0c4075b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ resolver = "3" version = "0.15.0" [workspace.package] -version = "0.5.0" +version = "0.6.0" edition = "2024" authors = ["Aurora Labs "] # An update of the MSRV requires updating: @@ -17,8 +17,8 @@ rust-version = "1.86.0" description = "Ergonomic plugin system to extend NEAR contracts." license = "CC0-1.0" readme = "README.md" -repository = "https://github.com/aurora-is-near/near-plugins" -homepage = "https://github.com/aurora-is-near/near-plugins" +repository = "https://github.com/Near-One/near-plugins" +homepage = "https://github.com/Near-One/near-plugins" keywords = ["near", "smart contract", "plugin"] [workspace.dependencies] From 610e71e482c88195ef1eb5505ab5a37f6f598c24 Mon Sep 17 00:00:00 2001 From: r-near <163825889+r-near@users.noreply.github.com> Date: Fri, 27 Mar 2026 01:02:57 -0700 Subject: [PATCH 2/2] chore: inherit workspace metadata in member crates Add repository, homepage, description, license, readme, and keywords inheritance so the published crate metadata is correct on crates.io. --- near-plugins-derive/Cargo.toml | 6 ++++++ near-plugins/Cargo.toml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/near-plugins-derive/Cargo.toml b/near-plugins-derive/Cargo.toml index 716d1d2..be8409a 100644 --- a/near-plugins-derive/Cargo.toml +++ b/near-plugins-derive/Cargo.toml @@ -4,6 +4,12 @@ authors.workspace = true edition.workspace = true rust-version.workspace = true version.workspace = true +description.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true +homepage.workspace = true +keywords.workspace = true [lib] proc-macro = true diff --git a/near-plugins/Cargo.toml b/near-plugins/Cargo.toml index c316c9d..2519ce5 100644 --- a/near-plugins/Cargo.toml +++ b/near-plugins/Cargo.toml @@ -4,6 +4,12 @@ authors.workspace = true edition.workspace = true rust-version.workspace = true version.workspace = true +description.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true +homepage.workspace = true +keywords.workspace = true [lib] crate-type = ["cdylib", "rlib"]