Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 28, 2022
1 parent f2ef142 commit 4167a95
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "serde_yaml"
version = "0.8.26" # remember to update html_root_url, and readme for major versions
version = "0.9.0" # remember to update html_root_url, and readme for major versions
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2021"
rust-version = "1.58"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -17,7 +17,7 @@ data in [YAML] file format.
```toml
[dependencies]
serde = "1.0"
serde_yaml = "0.8"
serde_yaml = "0.9"
```

Release notes are available under [GitHub releases].
Expand Down Expand Up @@ -57,7 +57,7 @@ defined in your program.
```toml
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_yaml = "0.9"
```

Structs serialize in the obvious way:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -115,7 +115,7 @@
//! }
//! ```

#![doc(html_root_url = "https://docs.rs/serde_yaml/0.8.26")]
#![doc(html_root_url = "https://docs.rs/serde_yaml/0.9.0")]
#![deny(missing_docs)]
// Suppressed clippy_pedantic lints
#![allow(
Expand Down

0 comments on commit 4167a95

Please sign in to comment.