diff --git a/README.md b/README.md index 8f53e139..38cef8cc 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ We recommend doing this in your tests. ### get started ```toml [dependencies] -ts-rs = "7.1" +ts-rs = "8.0" ``` ```rust diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 9897b675..a6cb27eb 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-rs-macros" -version = "7.1.1" +version = "8.0.0" authors = ["Moritz Bischof "] edition = "2021" description = "derive macro for ts-rs" diff --git a/ts-rs/Cargo.toml b/ts-rs/Cargo.toml index 3ad9a333..30352ee4 100644 --- a/ts-rs/Cargo.toml +++ b/ts-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-rs" -version = "7.1.1" +version = "8.0.0" authors = ["Moritz Bischof "] edition = "2021" license = "MIT" @@ -38,11 +38,11 @@ serde = { version = "1.0", features = ["derive"] } chrono = { version = "0.4", features = ["serde"] } [dependencies] -heapless = { version = ">= 0.7, <= 0.8", optional = true } -ts-rs-macros = { version = "7.1.1", path = "../macros" } +heapless = { version = ">= 0.7, < 0.9", optional = true } +ts-rs-macros = { version = "=8.0.0", path = "../macros" } dprint-plugin-typescript = { version = "0.89", optional = true } chrono = { version = "0.4", optional = true } -bigdecimal = { version = ">= 0.0.13, <= 0.4", features = [ +bigdecimal = { version = ">= 0.0.13, < 0.5", features = [ "serde", ], optional = true } uuid = { version = "1", optional = true } @@ -52,4 +52,4 @@ url = { version = "2", optional = true } semver = { version = "1", optional = true } thiserror = "1" indexmap = { version = "2", optional = true } -ordered-float = { version = ">= 3, <= 4", optional = true } +ordered-float = { version = ">= 3, < 5", optional = true } diff --git a/ts-rs/src/lib.rs b/ts-rs/src/lib.rs index c389b973..69d6ed63 100644 --- a/ts-rs/src/lib.rs +++ b/ts-rs/src/lib.rs @@ -40,7 +40,7 @@ //! ## get started //! ```toml //! [dependencies] -//! ts-rs = "7.1" +//! ts-rs = "8.0" //! ``` //! //! ```rust