diff --git a/scopegraphs-macros/Cargo.toml b/scopegraphs-macros/Cargo.toml index e191041..1a69b52 100644 --- a/scopegraphs-macros/Cargo.toml +++ b/scopegraphs-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scopegraphs-macros" -version = "0.2.13" +version = "0.3.0" edition = "2021" license = "MIT OR Apache-2.0" authors = [ @@ -20,7 +20,7 @@ proc-macro = true [dependencies] syn = { version = "2.0.29", features = [] } quote = "1.0.33" -scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", features = ["dot"], version = "0.2" } +scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", features = ["dot"], version = "0.3" } proc-macro2 = "1.0.69" [dev-dependencies] diff --git a/scopegraphs-regular-expressions/Cargo.toml b/scopegraphs-regular-expressions/Cargo.toml index 0020135..3c58de0 100644 --- a/scopegraphs-regular-expressions/Cargo.toml +++ b/scopegraphs-regular-expressions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scopegraphs-regular-expressions" -version = "0.2.13" +version = "0.3.0" edition = "2021" license = "MIT OR Apache-2.0" authors = [ diff --git a/scopegraphs-render-docs/Cargo.toml b/scopegraphs-render-docs/Cargo.toml index 17d3009..6fef306 100644 --- a/scopegraphs-render-docs/Cargo.toml +++ b/scopegraphs-render-docs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scopegraphs-render-docs" -version = "0.2.18" +version = "0.3.0" authors = ["Mike Lubinets ", "Frank Rehberger ", "Jonathan Dönszelmann "] description = "Derived from Aquamarine, a mermaid.js integration for rustdoc, renders scopegraphs by executing doctests to generate mermaid" keywords = ["proc_macro", "docs", "rustdoc", "mermaid", "diagram"] diff --git a/scopegraphs/Cargo.toml b/scopegraphs/Cargo.toml index d56fda7..3c6324a 100644 --- a/scopegraphs/Cargo.toml +++ b/scopegraphs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scopegraphs" -version = "0.2.18" +version = "0.3.0" edition = "2021" license = "MIT OR Apache-2.0" authors = [ @@ -20,9 +20,9 @@ bumpalo = "3.14.0" scopegraphs-prust-lib = { version = "0.1.0" } log = "0.4.20" -scopegraphs-macros = { path = "../scopegraphs-macros", version = "0.2" } -scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", version = "0.2" } -scopegraphs-render-docs = { path = "../scopegraphs-render-docs", version = "0.2", optional = true } +scopegraphs-macros = { path = "../scopegraphs-macros", version = "0.3" } +scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", version = "0.3" } +scopegraphs-render-docs = { path = "../scopegraphs-render-docs", version = "0.3", optional = true } [dev-dependencies] env_logger = "0.10.1"