Skip to content
Merged
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
4 changes: 2 additions & 2 deletions dir-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions dir-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -141,4 +141,4 @@ use dir_test::{dir_test, Fixture};
fn test(fixture: Fixture<&str>) -> std::io::Result<()> {
// ...
}
```
```
2 changes: 1 addition & 1 deletion dir-test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! ``` toml
//! [dev-dependencies]
//! dir-test = "0.1"
//! dir-test = "0.4"
//! ```
//!
//! ### Basic Usage
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[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"
description = "Provides a procedural macro for `dir-test`"


[lib]
proc_macro = true
proc-macro = true

[dependencies]
syn = { version = "2.0", features = ["full"] }
Expand Down
Loading