diff --git a/specta-jsdoc/Cargo.toml b/specta-jsdoc/Cargo.toml index 84e99ac..a090058 100644 --- a/specta-jsdoc/Cargo.toml +++ b/specta-jsdoc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "specta-jsdoc" description = "Export your Rust types to JSDoc" -version = "0.0.5" +version = "0.0.6" authors = ["Oscar Beaumont "] edition = "2021" license = "MIT" @@ -22,7 +22,7 @@ default = [] workspace = true [dependencies] -specta = { version = "=2.0.0-rc.18", path = "../specta" } -specta-typescript = { version = "=0.0.5", path = "../specta-typescript" } +specta = { version = "=2.0.0-rc.19", path = "../specta" } +specta-typescript = { version = "=0.0.6", path = "../specta-typescript" } # TODO: Don't depend on serde -specta-serde = { version = "=0.0.5", path = "../specta-serde" } +specta-serde = { version = "=0.0.6", path = "../specta-serde" } diff --git a/specta-serde/Cargo.toml b/specta-serde/Cargo.toml index a6d662e..2f9efdf 100644 --- a/specta-serde/Cargo.toml +++ b/specta-serde/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "specta-serde" description = "Serde support for Specta" -version = "0.0.5" +version = "0.0.6" authors = ["Oscar Beaumont "] edition = "2021" license = "MIT" @@ -19,5 +19,5 @@ rustdoc-args = ["--cfg", "docsrs"] workspace = true [dependencies] -specta = { version = "=2.0.0-rc.18", path = "../specta" } +specta = { version = "=2.0.0-rc.19", path = "../specta" } thiserror = "1.0.61" diff --git a/specta-typescript/Cargo.toml b/specta-typescript/Cargo.toml index 642ef5f..62726fd 100644 --- a/specta-typescript/Cargo.toml +++ b/specta-typescript/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "specta-typescript" description = "Export your Rust types to TypeScript" -version = "0.0.5" +version = "0.0.6" authors = ["Oscar Beaumont "] edition = "2021" license = "MIT" @@ -25,7 +25,7 @@ function = ["specta/function"] workspace = true [dependencies] -specta = { version = "=2.0.0-rc.18", path = "../specta" } +specta = { version = "=2.0.0-rc.19", path = "../specta" } # TODO: Don't depend on serde -specta-serde = { version = "=0.0.5", path = "../specta-serde" } +specta-serde = { version = "=0.0.6", path = "../specta-serde" } thiserror = "1.0.61" diff --git a/specta-util/Cargo.toml b/specta-util/Cargo.toml index 646723c..933cd63 100644 --- a/specta-util/Cargo.toml +++ b/specta-util/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "specta-util" description = "High-level utilities for working with Specta" -version = "0.0.5" +version = "0.0.6" authors = ["Oscar Beaumont "] edition = "2021" license = "MIT" @@ -27,7 +27,7 @@ serde = [] workspace = true [dependencies] -specta = { version = "=2.0.0-rc.18", path = "../specta" } +specta = { version = "=2.0.0-rc.19", path = "../specta" } specta-macros = { version = "=2.0.0-rc.17", path = "../specta-macros", default-features = false, optional = true } ctor = { version = "0.2.8", default-features = false, optional = true } serde = "1.0.204" # TODO: Can we remove this or at least make it optional behind the `serde` flag diff --git a/specta/Cargo.toml b/specta/Cargo.toml index 221c1b7..bf4c20c 100644 --- a/specta/Cargo.toml +++ b/specta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "specta" description = "Easily export your Rust types to other languages" -version = "2.0.0-rc.18" +version = "2.0.0-rc.19" authors = ["Oscar Beaumont "] edition = "2021" license = "MIT"