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/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 diff --git a/macros/Cargo.toml b/macros/Cargo.toml index de13096..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" @@ -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"] }