Skip to content

Commit 63bc4cb

Browse files
committed
bump to v0.6.0
1 parent 7a5c855 commit 63bc4cb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[package]
1313
name = "macro_magic"
14-
version = "0.5.1"
14+
version = "0.6.0"
1515
edition = "2024"
1616
authors = ["sam0x17"]
1717
license = "MIT"
@@ -25,8 +25,8 @@ description = "Allows the exporting and importing of the tokens of items across
2525
all-features = true
2626

2727
[dependencies]
28-
macro_magic_macros = { version = "0.5.1", path = "macros" }
29-
macro_magic_core = { version = "0.5.1", path = "core", optional = true }
28+
macro_magic_macros = { version = "0.6.0", path = "macros" }
29+
macro_magic_core = { version = "0.6.0", path = "core", optional = true }
3030
syn = { version = "2", features = ["full"], optional = true }
3131
quote = { version = "1", optional = true }
3232

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro_magic_core"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2024"
55
description = "Core implementation behind macro_magic"
66
repository = "https://github.com/sam0x17/macro_magic"
@@ -15,7 +15,7 @@ quote = "1"
1515
syn = { version = "2", features = ["full"] }
1616
derive-syn-parse = "0.2"
1717
proc-macro2 = "1"
18-
macro_magic_core_macros = { version = "0.5.1", path = "../core_macros" }
18+
macro_magic_core_macros = { version = "0.6.0", path = "../core_macros" }
1919
const-random = "0.1.15"
2020

2121
[features]

core_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro_magic_core_macros"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2024"
55
description = "Support macros for macro_magic_core"
66
repository = "https://github.com/sam0x17/macro_magic"

macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro_magic_macros"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2024"
55
description = "Proc-macro sub-crate for macro_magic"
66
repository = "https://github.com/sam0x17/macro_magic"
@@ -18,4 +18,4 @@ proc-macro = true
1818
[dependencies]
1919
quote = "1"
2020
syn = { version = "2", features = ["full"] }
21-
macro_magic_core = { version = "0.5.1", path = "../core"}
21+
macro_magic_core = { version = "0.6.0", path = "../core"}

0 commit comments

Comments
 (0)