Skip to content

Commit c2d30df

Browse files
committed
Prepare v0.10.0 release
1 parent 677cf17 commit c2d30df

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [0.10.0] - 2025-04-08
10+
911
### API Changes
1012

1113
- Add `ron::Options::to_io_writer` and `ron::Options::to_io_writer_pretty` to allow writing into an `io::Writer` ([#561](https://github.com/ron-rs/ron/pull/561))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ron"
33
# Memo: update version in src/lib.rs too (doc link)
4-
version = "0.9.0"
4+
version = "0.10.0"
55
license = "MIT OR Apache-2.0"
66
keywords = ["parser", "serde", "serialization"]
77
authors = [

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#![deny(unsafe_code)]
1414
#![allow(clippy::missing_errors_doc)] // FIXME
1515
#![doc = include_str!("../README.md")]
16-
#![doc(html_root_url = "https://docs.rs/ron/0.9.0")]
16+
#![doc(html_root_url = "https://docs.rs/ron/0.10.0")]
1717

1818
pub mod de;
1919
pub mod ser;

0 commit comments

Comments
 (0)