From c8f87d0368934a0823b529c61a595bd929be5300 Mon Sep 17 00:00:00 2001 From: raldone01 Date: Tue, 11 Feb 2025 12:36:37 +0100 Subject: [PATCH] `v0.3.4` --- CHANGELOG.md | 9 ++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f83ea4..d63e772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.4] - 2025-02-11 + +* Fix false positives in the crate path ambiguity detection. +* Add more tests. +* Update dependencies. + ## [0.3.3] - 2025-01-19 * Add support for single file rust scripts that use `CARGO_MANIFEST_PATH`. @@ -47,7 +53,8 @@ Support reactive compilation using `proc_macro_tracked_env` and `track_path` nig Initial release. -[Unreleased]: https://github.com/ink-feather-org/cargo-manifest-proc-macros-rs/compare/v0.3.3...HEAD +[Unreleased]: https://github.com/ink-feather-org/cargo-manifest-proc-macros-rs/compare/v0.3.4...HEAD +[0.3.4]: https://github.com/ink-feather-org/cargo-manifest-proc-macros-rs/compare/v0.3.3...v0.3.4 [0.3.3]: https://github.com/ink-feather-org/cargo-manifest-proc-macros-rs/compare/v0.3.2...v0.3.3 [0.3.2]: https://github.com/ink-feather-org/cargo-manifest-proc-macros-rs/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/ink-feather-org/cargo-manifest-proc-macros-rs/compare/v0.3.0...v0.3.1 diff --git a/Cargo.lock b/Cargo.lock index ec73aac..c27bdcd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "cargo-manifest-proc-macros" -version = "0.3.3" +version = "0.3.4" dependencies = [ "serial_test", "syn", diff --git a/Cargo.toml b/Cargo.toml index c98718f..c308bbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ strip = "debuginfo" [package] name = "cargo-manifest-proc-macros" -version = "0.3.3" +version = "0.3.4" edition = "2021" # once we reach 1.85.0 in msrv, we can bump this to 2024 license = "MIT OR Apache-2.0" description = "Find the syn::Path to your own crate from proc-macros reliably."