Skip to content

Commit dd0ff74

Browse files
committed
chore: Release
1 parent 96f1ccb commit dd0ff74

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ The main crate `foo` will need the following `Cargo.toml`:
6363
// ...
6464

6565
[dependencies]
66-
stageleft = "0.8.0"
66+
stageleft = "0.8.1"
6767
foo_macro = { path = "../foo_macro" }
6868

6969
[build-dependencies]
70-
stageleft_tool = "0.8.0"
70+
stageleft_tool = "0.8.1"
7171
```
7272

7373
The helper crate should have the following `Cargo.toml`:
@@ -88,7 +88,7 @@ macro = []
8888
// all dependencies of foo
8989

9090
[build-dependencies]
91-
stageleft_tool = "0.8.0"
91+
stageleft_tool = "0.8.1"
9292
```
9393

9494
Next, you will need to set up `build.rs` scripts for both of your crates.

stageleft/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stageleft"
33
publish = true
4-
version = "0.8.0"
4+
version = "0.8.1"
55
documentation = "https://docs.rs/stageleft/"
66
description = "Type-safe staged programming for Rust"
77
edition = { workspace = true }
@@ -20,5 +20,5 @@ syn = { version = "2.0.46", features = [
2020
] }
2121
proc-macro2 = "1.0.74"
2222
proc-macro-crate = "1.0.0"
23-
stageleft_macro = { path = "../stageleft_macro", version = "^0.8.0" }
23+
stageleft_macro = { path = "../stageleft_macro", version = "^0.8.1" }
2424
ctor = "0.4.1"

stageleft_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stageleft_macro"
33
publish = true
4-
version = "0.8.0"
4+
version = "0.8.1"
55
documentation = "https://docs.rs/stageleft_macro/"
66
description = "Helper macros for the stageleft crate"
77
edition = { workspace = true }

stageleft_test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ release = false
1111
test_feature = []
1212

1313
[dependencies]
14-
stageleft = { path = "../stageleft", version = "^0.8.0" }
14+
stageleft = { path = "../stageleft", version = "^0.8.1" }
1515
stageleft_test_macro = { path = "../stageleft_test_macro" }
1616

1717
rand = { version = "0.9.0", features = ["thread_rng"] }
1818

1919
[build-dependencies]
20-
stageleft_tool = { path = "../stageleft_tool", version = "^0.8.0" }
20+
stageleft_tool = { path = "../stageleft_tool", version = "^0.8.1" }

stageleft_test_macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ proc-macro = true
1515
path = "../stageleft_test/src/lib.rs"
1616

1717
[dependencies]
18-
stageleft = { path = "../stageleft", version = "^0.8.0" }
18+
stageleft = { path = "../stageleft", version = "^0.8.1" }
1919
rand = { version = "0.9.0", features = ["thread_rng"] }
2020

2121
[build-dependencies]
22-
stageleft_tool = { path = "../stageleft_tool", version = "^0.8.0" }
22+
stageleft_tool = { path = "../stageleft_tool", version = "^0.8.1" }

stageleft_tool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stageleft_tool"
33
publish = true
4-
version = "0.8.0"
4+
version = "0.8.1"
55
documentation = "https://docs.rs/stageleft_macro/"
66
description = "Helper macros for the stageleft crate"
77
edition = { workspace = true }

0 commit comments

Comments
 (0)