Skip to content

Commit

Permalink
Release v8.0.0 (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
NyxCode authored Mar 18, 2024
1 parent 7949a33 commit 160b355
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ We recommend doing this in your tests.
### get started
```toml
[dependencies]
ts-rs = "7.1"
ts-rs = "8.0"
```

```rust
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ts-rs-macros"
version = "7.1.1"
version = "8.0.0"
authors = ["Moritz Bischof <[email protected]>"]
edition = "2021"
description = "derive macro for ts-rs"
Expand Down
10 changes: 5 additions & 5 deletions ts-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ts-rs"
version = "7.1.1"
version = "8.0.0"
authors = ["Moritz Bischof <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -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 }
Expand All @@ -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 }
2 changes: 1 addition & 1 deletion ts-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
//! ## get started
//! ```toml
//! [dependencies]
//! ts-rs = "7.1"
//! ts-rs = "8.0"
//! ```
//!
//! ```rust
Expand Down

0 comments on commit 160b355

Please sign in to comment.