Skip to content

Commit 87386d5

Browse files
committed
chore: Release
1 parent e500940 commit 87386d5

File tree

8 files changed

+16
-16
lines changed

8 files changed

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

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

2525
[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.13.0"
4+
version = "0.13.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
@@ -16,10 +16,10 @@ stageleft_macro_entrypoint = []
1616
test_feature = []
1717

1818
[dependencies]
19-
stageleft = { path = "../stageleft", version = "^0.13.0" }
19+
stageleft = { path = "../stageleft", version = "^0.13.1" }
2020
stageleft_test_macro = { path = "../stageleft_test_macro" }
2121

2222
rand_alias = { package = "rand", version = "0.9.0", features = ["thread_rng"] }
2323

2424
[build-dependencies]
25-
stageleft_tool = { path = "../stageleft_tool", version = "^0.13.0" }
25+
stageleft_tool = { path = "../stageleft_tool", version = "^0.13.1" }

stageleft_test_macro/Cargo.toml

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

2020
[dependencies]
21-
stageleft = { path = "../stageleft", version = "^0.13.0" }
21+
stageleft = { path = "../stageleft", version = "^0.13.1" }
2222

2323
rand_alias = { package = "rand", version = "0.9.0", features = ["thread_rng"] }
2424

2525
[build-dependencies]
26-
stageleft_tool = { path = "../stageleft_tool", version = "^0.13.0" }
26+
stageleft_tool = { path = "../stageleft_tool", version = "^0.13.1" }

stageleft_test_no_entry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ workspace = true
1313
release = false
1414

1515
[dependencies]
16-
stageleft = { path = "../stageleft", version = "^0.13.0" }
16+
stageleft = { path = "../stageleft", version = "^0.13.1" }
1717

1818
slotmap = "1.0.0"
1919

2020
[build-dependencies]
21-
stageleft_tool = { path = "../stageleft_tool", version = "^0.13.0" }
21+
stageleft_tool = { path = "../stageleft_tool", version = "^0.13.1" }
2222

2323
[dev-dependencies]
2424
insta = "1.39"

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.13.0"
4+
version = "0.13.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)