From 474be5dfda138b1396a413d22b7b86c6a066e618 Mon Sep 17 00:00:00 2001 From: Julian Schmid Date: Thu, 14 Sep 2023 08:40:21 +0200 Subject: [PATCH] Increase version to 0.8.4 --- Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b229185..c4d58af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dlt_parse" -version = "0.8.3" +version = "0.8.4" authors = ["Julian Schmid "] edition = "2021" rust-version = "1.60" diff --git a/README.md b/README.md index e8d425f..59adce4 100644 --- a/README.md +++ b/README.md @@ -15,21 +15,21 @@ By default `serde` is disabled and `std` is enabled if you add `dlt_parse` as de ```toml [dependencies] -dlt_parse = "0.8.2" +dlt_parse = "0.8.4" ``` If you additionally want `serde` support you will have to activate the `serde` feature: ```toml [dependencies] -dlt_parse = { version = "0.8.2", features = ["serde"] } +dlt_parse = { version = "0.8.4", features = ["serde"] } ``` If you want to use the crate in `no_std` mode you will have to disable the default features: ```toml [dependencies] -dlt_parse = { version = "0.8.2", default-features = false } +dlt_parse = { version = "0.8.4", default-features = false } ``` ## What is dlt_parse? diff --git a/src/lib.rs b/src/lib.rs index b680978..9006b40 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,21 +7,21 @@ //! //! ```toml //! [dependencies] -//! dlt_parse = "0.8.2" +//! dlt_parse = "0.8.4" //! ``` //! //! If you additionally want `serde` support you will have to activate the `serde` feature in your `Cargo.toml`: //! //! ```toml //! [dependencies] -//! dlt_parse = { version = "0.8.2", features = ["serde"] } +//! dlt_parse = { version = "0.8.4", features = ["serde"] } //! ``` //! //! If you want to use the crate in `no_std` mode you will have to disable the default features: //! //! ```toml //! [dependencies] -//! dlt_parse = { version = "0.8.2", default-features = false } +//! dlt_parse = { version = "0.8.4", default-features = false } //! ``` //! //! # What is dlt_parse?