Skip to content

Commit

Permalink
Increased version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianSchmid committed Sep 18, 2023
1 parent 5b6fa56 commit c9dac80
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.4"
version = "0.9.0"
authors = ["Julian Schmid <[email protected]>"]
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.4"
dlt_parse = "0.9.0"
```

If you additionally want `serde` support you will have to activate the `serde` feature:

```toml
[dependencies]
dlt_parse = { version = "0.8.4", features = ["serde"] }
dlt_parse = { version = "0.9.0", 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.4", default-features = false }
dlt_parse = { version = "0.9.0", 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.4"
//! dlt_parse = "0.9.0"
//! ```
//!
//! 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.4", features = ["serde"] }
//! dlt_parse = { version = "0.9.0", 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.4", default-features = false }
//! dlt_parse = { version = "0.9.0", default-features = false }
//! ```
//!
//! # What is dlt_parse?
Expand Down

0 comments on commit c9dac80

Please sign in to comment.