Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 8.1.0 #283

Merged
merged 2 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# master
### Breaking
### Features
### Fixes


# 8.1.0

### Breaking

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
members = ["config", "macros", "ts-rs", "example"]
members = ["macros", "ts-rs", "example"]
resolver = "2"
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 = "8.0"
ts-rs = "8.1"
```

```rust
Expand Down
10 changes: 0 additions & 10 deletions config/Cargo.toml

This file was deleted.

5 changes: 0 additions & 5 deletions config/README.md

This file was deleted.

62 changes: 0 additions & 62 deletions config/src/lib.rs

This file was deleted.

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 = "8.0.0"
version = "8.1.0"
authors = ["Moritz Bischof <moritz.bischof1@gmail.com>"]
edition = "2021"
description = "derive macro for ts-rs"
Expand Down
4 changes: 2 additions & 2 deletions ts-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ts-rs"
version = "8.0.0"
version = "8.1.0"
authors = ["Moritz Bischof <moritz.bischof1@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -40,7 +40,7 @@ chrono = { version = "0.4", features = ["serde"] }

[dependencies]
heapless = { version = ">= 0.7, < 0.9", optional = true }
ts-rs-macros = { version = "=8.0.0", path = "../macros" }
ts-rs-macros = { version = "=8.1.0", path = "../macros" }
dprint-plugin-typescript = { version = "0.89", optional = true }
chrono = { version = "0.4", optional = true }
bigdecimal = { version = ">= 0.0.13, < 0.5", features = [
Expand Down
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 = "8.0"
//! ts-rs = "8.1"
//! ```
//!
//! ```rust
Expand Down
Loading