Skip to content

Commit

Permalink
bump version to v0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sam0x17 committed Mar 30, 2023
1 parent 46f180f commit 87766b4
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.2.6"
version = "0.2.7"
edition = "2021"
authors = ["sam0x17"]
license = "MIT"
Expand All @@ -26,8 +26,8 @@ description = "Allows the exporting and importing of the tokens of items across
[dependencies]
syn = { version = "1.0", features = ["full"] }
quote = "1.0"
macro_magic_macros = { version = "0.2.6", path = "macros" }
macro_magic_core = { version = "0.2.6", path = "core" }
macro_magic_macros = { version = "0.2.7", path = "macros" }
macro_magic_core = { version = "0.2.7", path = "core" }

[dev-dependencies]
test_macros = { path = "tests/test_macros" }
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.2.6"
version = "0.2.7"
edition = "2021"
description = "Core implementation behind macro_magic"
repository = "https://github.com/sam0x17/macro_magic"
Expand All @@ -14,4 +14,4 @@ prettyplease = "0.1"
derive-syn-parse = "0.1.5"
proc-macro2 = "1.0"
convert_case = "0.6.0"
macro_magic_core_macros = { version = "0.2.6", path = "../core_macros" }
macro_magic_core_macros = { version = "0.2.7", path = "../core_macros" }
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.2.6"
version = "0.2.7"
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.2.6"
version = "0.2.7"
edition = "2021"
description = "Proc-macro sub-crate for macro_magic"
repository = "https://github.com/sam0x17/macro_magic"
Expand All @@ -15,4 +15,4 @@ proc-macro = true
[dependencies]
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
macro_magic_core = { version = "0.2.6", path = "../core"}
macro_magic_core = { version = "0.2.7", path = "../core"}

0 comments on commit 87766b4

Please sign in to comment.