Skip to content

Commit 960fd96

Browse files
committed
chore: Release
1 parent d421020 commit 960fd96

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.9.8"
66+
stageleft = "0.10.0"
6767
foo_macro = { path = "../foo_macro" }
6868

6969
[build-dependencies]
70-
stageleft_tool = "0.9.8"
70+
stageleft_tool = "0.10.0"
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.9.8"
91+
stageleft_tool = "0.10.0"
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.9.8"
4+
version = "0.10.0"
55
documentation = "https://docs.rs/stageleft/"
66
description = "Type-safe staged programming for Rust"
77
edition = { workspace = true }
@@ -16,7 +16,7 @@ quote = "1"
1616
syn = { version = "2", features = [ "full", "visit-mut" ] }
1717
proc-macro2 = "1"
1818
proc-macro-crate = "3.3"
19-
stageleft_macro = { path = "../stageleft_macro", version = "^0.9.8" }
19+
stageleft_macro = { path = "../stageleft_macro", version = "^0.10.0" }
2020
ctor = "0.4.1"
2121

2222
[dev-dependencies]

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.9.8"
4+
version = "0.10.0"
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
@@ -13,10 +13,10 @@ stageleft_macro_entrypoint = []
1313
test_feature = []
1414

1515
[dependencies]
16-
stageleft = { path = "../stageleft", version = "^0.9.8" }
16+
stageleft = { path = "../stageleft", version = "^0.10.0" }
1717
stageleft_test_macro = { path = "../stageleft_test_macro" }
1818

1919
rand_alias = { package = "rand", version = "0.9.0", features = ["thread_rng"] }
2020

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

stageleft_test_macro/Cargo.toml

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

1717
[dependencies]
18-
stageleft = { path = "../stageleft", version = "^0.9.8" }
18+
stageleft = { path = "../stageleft", version = "^0.10.0" }
1919

2020
rand_alias = { package = "rand", version = "0.9.0", features = ["thread_rng"] }
2121

2222
[build-dependencies]
23-
stageleft_tool = { path = "../stageleft_tool", version = "^0.9.8" }
23+
stageleft_tool = { path = "../stageleft_tool", version = "^0.10.0" }

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.9.8"
4+
version = "0.10.0"
55
documentation = "https://docs.rs/stageleft_macro/"
66
description = "Helper macros for the stageleft crate"
77
edition = { workspace = true }

0 commit comments

Comments
 (0)