Skip to content

Commit

Permalink
bump to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sam0x17 committed Oct 10, 2023
1 parent e5ebe09 commit 3b21163
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [

[package]
name = "macro_magic"
version = "0.4.3"
version = "0.5.0"
edition = "2021"
authors = ["sam0x17"]
license = "MIT"
Expand All @@ -25,8 +25,8 @@ description = "Allows the exporting and importing of the tokens of items across
all-features = true

[dependencies]
macro_magic_macros = { version = "0.4.3", path = "macros" }
macro_magic_core = { version = "0.4.3", path = "core", optional = true }
macro_magic_macros = { version = "0.5.0", path = "macros" }
macro_magic_core = { version = "0.5.0", path = "core", optional = true }
syn = { version = "2", features = ["full"], optional = true }
quote = { version = "1", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macro_magic_core"
version = "0.4.3"
version = "0.5.0"
edition = "2021"
description = "Core implementation behind macro_magic"
repository = "https://github.com/sam0x17/macro_magic"
Expand All @@ -15,7 +15,7 @@ quote = "1"
syn = { version = "2", features = ["full"] }
derive-syn-parse = "0.1.5"
proc-macro2 = "1"
macro_magic_core_macros = { version = "0.4.3", path = "../core_macros" }
macro_magic_core_macros = { version = "0.5.0", path = "../core_macros" }
const-random = "0.1.15"

[features]
Expand Down
2 changes: 1 addition & 1 deletion core_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macro_magic_core_macros"
version = "0.4.3"
version = "0.5.0"
edition = "2021"
description = "Support macros for macro_magic_core"
repository = "https://github.com/sam0x17/macro_magic"
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macro_magic_macros"
version = "0.4.3"
version = "0.5.0"
edition = "2021"
description = "Proc-macro sub-crate for macro_magic"
repository = "https://github.com/sam0x17/macro_magic"
Expand All @@ -18,4 +18,4 @@ proc-macro = true
[dependencies]
quote = "1"
syn = { version = "2", features = ["full"] }
macro_magic_core = { version = "0.4.3", path = "../core"}
macro_magic_core = { version = "0.5.0", path = "../core"}

0 comments on commit 3b21163

Please sign in to comment.