Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hello@aurora.dev>"]
# An update of the MSRV requires updating:
Expand Down
6 changes: 6 additions & 0 deletions near-plugins-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion near-plugins-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion near-plugins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down