From b9e2781c27315fc8e4aa3a659435b18cbda39271 Mon Sep 17 00:00:00 2001 From: Moritz Bischof Date: Fri, 28 Jun 2024 01:58:51 +0200 Subject: [PATCH] change to patch release --- CHANGELOG.md | 4 ++-- Cargo.lock | 2 +- README.md | 2 +- macros/Cargo.toml | 2 +- ts-rs/Cargo.toml | 2 +- ts-rs/src/lib.rs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c005b455..07ba3267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,8 @@ ### Features ### Fixes -# 9.1.0 -### Features +# 9.0.1 +### Fixes - Allow using `#[ts(flatten)]` on fields using generic parameters ([#336](https://github.com/Aleph-Alpha/ts-rs/pull/336)) diff --git a/Cargo.lock b/Cargo.lock index 8fd69f8f..3cb30379 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1163,7 +1163,7 @@ dependencies = [ [[package]] name = "ts-rs-macros" -version = "9.1.0" +version = "9.0.1" dependencies = [ "proc-macro2", "quote", diff --git a/README.md b/README.md index f163c47c..de1d4769 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ We recommend doing this in your tests. ### Get started ```toml [dependencies] -ts-rs = "9.1" +ts-rs = "9.0" ``` ```rust diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 53c196c3..bbab8dc1 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-rs-macros" -version = "9.1.0" +version = "9.0.1" authors = ["Moritz Bischof "] edition = "2021" description = "derive macro for ts-rs" diff --git a/ts-rs/Cargo.toml b/ts-rs/Cargo.toml index 9283e809..ff6ed588 100644 --- a/ts-rs/Cargo.toml +++ b/ts-rs/Cargo.toml @@ -42,7 +42,7 @@ chrono = { version = "0.4", features = ["serde"] } [dependencies] heapless = { version = ">= 0.7, < 0.9", optional = true } -ts-rs-macros = { version = "=9.1.0", path = "../macros" } +ts-rs-macros = { version = "=9.0.1", path = "../macros" } dprint-plugin-typescript = { version = "0.90", optional = true } chrono = { version = "0.4", optional = true } bigdecimal = { version = ">= 0.0.13, < 0.5", features = [ diff --git a/ts-rs/src/lib.rs b/ts-rs/src/lib.rs index 99047021..58ff6e00 100644 --- a/ts-rs/src/lib.rs +++ b/ts-rs/src/lib.rs @@ -40,7 +40,7 @@ //! ## Get started //! ```toml //! [dependencies] -//! ts-rs = "9.1" +//! ts-rs = "9.0" //! ``` //! //! ```rust