Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
* Properly reload the workspace when the `Cargo.toml` file changes.
  • Loading branch information
raldone01 committed Jan 12, 2025
1 parent 170f6a9 commit 6646c1c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,7 @@ jobs:
run: cargo build --verbose --all-features --all-targets
- name: Run tests
run: cargo test --verbose --lib --examples
- name: Run tests no default features
run: cargo test --verbose --lib --examples --no-default-features
- name: Run tests --all-features
run: cargo test --verbose --all-features --lib --examples
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1] - 2025-01-12

* Properly reload the workspace when the `Cargo.toml` file changes.

## [0.3.0] - 2025-01-02

* Added support for stable rust compilers.
Expand Down Expand Up @@ -34,7 +38,8 @@ Support reactive compilation using `proc_macro_tracked_env` and `track_path` nig

Initial release.

[Unreleased]: https://github.com/ink-feather-org/trait-cast-rs/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/ink-feather-org/trait-cast-rs/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/ink-feather-org/trait-cast-rs/releases/tag/v0.3.0...v0.3.1
[0.3.0]: https://github.com/ink-feather-org/trait-cast-rs/releases/tag/v0.2.2...v0.3.0
[0.2.2]: https://github.com/ink-feather-org/trait-cast-rs/releases/tag/v0.2.1...v0.2.2
[0.2.1]: https://github.com/ink-feather-org/trait-cast-rs/releases/tag/v0.2.0...v0.2.1
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ strip = "debuginfo"

[package]
name = "cargo-manifest-proc-macros"
version = "0.3.0"
version = "0.3.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Find the syn::Path to your own crate from proc-macros reliably."
Expand Down

0 comments on commit 6646c1c

Please sign in to comment.