diff --git a/Cargo.toml b/Cargo.toml index edc2f11..c3bc192 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,6 @@ [workspace] resolver = "2" members = ["staged-builder", "staged-builder-internals"] + +[workspace.package] +version = "0.2.0" diff --git a/staged-builder-internals/Cargo.toml b/staged-builder-internals/Cargo.toml index 91fc044..a4ac6e9 100644 --- a/staged-builder-internals/Cargo.toml +++ b/staged-builder-internals/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "staged-builder-internals" -version = "0.1.2" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Internal implementation details for staged-builder. Do not use directly." diff --git a/staged-builder/Cargo.toml b/staged-builder/Cargo.toml index 0b8c4d1..67d885a 100644 --- a/staged-builder/Cargo.toml +++ b/staged-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "staged-builder" -version = "0.1.2" +version.workspace = true edition = "2021" license = "MIT OR Apache-2.0" description = "A proc macro which generates staged builders for types." @@ -9,4 +9,4 @@ categories = ["no-std"] keywords = ["builder", "staged", "telescopic"] [dependencies] -staged-builder-internals = { version = "0.1.2", path = "../staged-builder-internals" } +staged-builder-internals = { version = "0.2.0", path = "../staged-builder-internals" }