From caedaf953d0206803b8515b4ef9f5410e8ac6c94 Mon Sep 17 00:00:00 2001 From: Yoshitomo Nakanishi Date: Wed, 4 Dec 2024 17:54:35 +0100 Subject: [PATCH 1/3] Update `README` --- dir-test/README.md | 4 ++-- dir-test/src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dir-test/README.md b/dir-test/README.md index 591421c..8cbf9f9 100644 --- a/dir-test/README.md +++ b/dir-test/README.md @@ -9,7 +9,7 @@ Add the following dependency to your `Cargo.toml`. ``` toml [dev-dependencies] -dir-test = "0.1" +dir-test = "0.4" ``` ### Basic Usage @@ -141,4 +141,4 @@ use dir_test::{dir_test, Fixture}; fn test(fixture: Fixture<&str>) -> std::io::Result<()> { // ... } -``` \ No newline at end of file +``` diff --git a/dir-test/src/lib.rs b/dir-test/src/lib.rs index bf09d8e..578edba 100644 --- a/dir-test/src/lib.rs +++ b/dir-test/src/lib.rs @@ -8,7 +8,7 @@ //! //! ``` toml //! [dev-dependencies] -//! dir-test = "0.1" +//! dir-test = "0.4" //! ``` //! //! ### Basic Usage From 0d410306aa705712781afc2e0473fe239eb90924 Mon Sep 17 00:00:00 2001 From: Yoshitomo Nakanishi Date: Wed, 4 Dec 2024 17:59:18 +0100 Subject: [PATCH 2/3] Rename `proc_macro` to `proc-macro` --- macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/Cargo.toml b/macros/Cargo.toml index de13096..9527c5b 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -9,7 +9,7 @@ description = "Provides a procedural macro for `dir-test`" [lib] -proc_macro = true +proc-macro = true [dependencies] syn = { version = "2.0", features = ["full"] } From df922022a3c26a2444e0d20cc460ca5db6a92b68 Mon Sep 17 00:00:00 2001 From: Yoshitomo Nakanishi Date: Wed, 4 Dec 2024 18:00:42 +0100 Subject: [PATCH 3/3] Bump version to `0.4.1` --- dir-test/Cargo.toml | 4 ++-- macros/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dir-test/Cargo.toml b/dir-test/Cargo.toml index 5e5c254..463b7f1 100644 --- a/dir-test/Cargo.toml +++ b/dir-test/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dir-test" authors = ["The Fe Project Developers"] -version = "0.4.0" +version = "0.4.1" readme = "README.md" edition = "2021" license = "Apache-2.0" @@ -12,7 +12,7 @@ categories = ["development-tools", "filesystem"] [dependencies] -dir-test-macros = { version = "0.4.0", path = "../macros" } +dir-test-macros = { version = "0.4.1", path = "../macros" } [dev-dependencies] trybuild = { version = "1.0", features = ["diff"] } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 9527c5b..c4459ff 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dir-test-macros" authors = ["The Fe Project Developers"] -version = "0.4.0" +version = "0.4.1" edition = "2021" license = "Apache-2.0" repository = "https://github.com/fe-lang/dir-test"