Skip to content

Commit

Permalink
Increase version to 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianSchmid committed Sep 14, 2023
1 parent adec4d2 commit 474be5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dlt_parse"
version = "0.8.3"
version = "0.8.4"
authors = ["Julian Schmid <info@julianschmid.name>"]
edition = "2021"
rust-version = "1.60"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit 474be5d

Please sign in to comment.