Skip to content

Commit

Permalink
Update dependencies. Release v0.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethiraric committed Sep 25, 2024
1 parent c2069fc commit 8c267c0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## Upcoming

## v0.9.0

**Breaking Changes**
- Update dependencies.
Since `hashlink` is exposed (through `Yaml::Hash`) and has been updated from
0.8.4 to 0.9.1, the new version of `yaml-rust2` will not link properly if you
explicitly rely on `hashlink v0.8`.
Existing code with v0.8.4 should still compile fine in v0.9.1 (see
[hashlink's v0.9.0
changelog](https://github.com/kyren/hashlink/releases/tag/v0.9.0)).

**Bug fixes**
- ([#37](https://github.com/Ethiraric/yaml-rust2/pull/37))
Parse empty scalars as `""` instead of `"~"`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yaml-rust2"
version = "0.8.1"
version = "0.9.0"
authors = [
"Yuheng Chen <yuhengchen@sensetime.com>",
"Ethiraric <ethiraric@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add the following to the Cargo.toml of your project:

```toml
[dependencies]
yaml-rust2 = "0.8"
yaml-rust2 = "0.9"
```

Use `yaml_rust2::YamlLoader` to load YAML documents and access them as `Yaml` objects:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//!
//! ```toml
//! [dependencies]
//! yaml-rust2 = "0.8.1"
//! yaml-rust2 = "0.9.0"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit 8c267c0

Please sign in to comment.