Skip to content

Commit 60ffc27

Browse files
🎉 Publish 2.0.0-rc.21
1 parent 3789d62 commit 60ffc27

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

specta-jsdoc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "specta-jsdoc"
33
description = "Export your Rust types to JSDoc"
4-
version = "0.0.7"
4+
version = "0.0.8"
55
authors = ["Oscar Beaumont <[email protected]>"]
66
edition = "2021"
77
license = "MIT"
@@ -22,7 +22,7 @@ default = []
2222
workspace = true
2323

2424
[dependencies]
25-
specta = { version = "=2.0.0-rc.20", path = "../specta" }
26-
specta-typescript = { version = "=0.0.7", path = "../specta-typescript" }
25+
specta = { version = "=2.0.0-rc.21", path = "../specta" }
26+
specta-typescript = { version = "=0.0.8", path = "../specta-typescript" }
2727
# TODO: Don't depend on serde
28-
specta-serde = { version = "=0.0.7", path = "../specta-serde" }
28+
specta-serde = { version = "=0.0.8", path = "../specta-serde" }

specta-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "specta-macros"
33
description = "Macros for specta. Don't use directly!"
4-
version = "2.0.0-rc.17"
4+
version = "2.0.0-rc.18"
55
authors = ["Oscar Beaumont <[email protected]>"]
66
edition = "2021"
77
license = "MIT"

specta-serde/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "specta-serde"
33
description = "Serde support for Specta"
4-
version = "0.0.7"
4+
version = "0.0.8"
55
authors = ["Oscar Beaumont <[email protected]>"]
66
edition = "2021"
77
license = "MIT"
@@ -19,5 +19,5 @@ rustdoc-args = ["--cfg", "docsrs"]
1919
workspace = true
2020

2121
[dependencies]
22-
specta = { version = "=2.0.0-rc.20", path = "../specta" }
22+
specta = { version = "=2.0.0-rc.21", path = "../specta" }
2323
thiserror = "1.0.61"

specta-typescript/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "specta-typescript"
33
description = "Export your Rust types to TypeScript"
4-
version = "0.0.7"
4+
version = "0.0.8"
55
authors = ["Oscar Beaumont <[email protected]>"]
66
edition = "2021"
77
license = "MIT"
@@ -25,7 +25,7 @@ function = ["specta/function"]
2525
workspace = true
2626

2727
[dependencies]
28-
specta = { version = "=2.0.0-rc.20", path = "../specta" }
28+
specta = { version = "=2.0.0-rc.21", path = "../specta" }
2929
# TODO: Don't depend on serde
30-
specta-serde = { version = "=0.0.7", path = "../specta-serde" }
30+
specta-serde = { version = "=0.0.8", path = "../specta-serde" }
3131
thiserror = "1.0.61"

specta-util/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "specta-util"
33
description = "High-level utilities for working with Specta"
4-
version = "0.0.7"
4+
version = "0.0.8"
55
authors = ["Oscar Beaumont <[email protected]>"]
66
edition = "2021"
77
license = "MIT"
@@ -25,6 +25,6 @@ serde = []
2525
workspace = true
2626

2727
[dependencies]
28-
specta = { version = "=2.0.0-rc.20", path = "../specta" }
29-
specta-macros = { version = "=2.0.0-rc.17", path = "../specta-macros", default-features = false, optional = true }
28+
specta = { version = "=2.0.0-rc.21", path = "../specta" }
29+
specta-macros = { version = "=2.0.0-rc.18", path = "../specta-macros", default-features = false, optional = true }
3030
serde = "1.0.204" # TODO: Can we remove this or at least make it optional behind the `serde` flag

specta/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "specta"
33
description = "Easily export your Rust types to other languages"
4-
version = "2.0.0-rc.20"
4+
version = "2.0.0-rc.21"
55
authors = ["Oscar Beaumont <[email protected]>"]
66
edition = "2021"
77
license = "MIT"
@@ -87,7 +87,7 @@ interop = ["dep:specta1"]
8787
workspace = true
8888

8989
[dependencies]
90-
specta-macros = { version = "=2.0.0-rc.17", optional = true, path = "../specta-macros" }
90+
specta-macros = { version = "=2.0.0-rc.18", optional = true, path = "../specta-macros" }
9191
paste = { version = "1", optional = true }
9292
thiserror = "1.0.61"
9393

0 commit comments

Comments
 (0)