Skip to content

Commit da87d1c

Browse files
authored
Prepare for v0.9.0 release (#560)
1 parent cf0e04d commit da87d1c

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

CHANGELOG.md

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

77
## Unreleased
88

9-
## [0.9.0] - ??
9+
## [0.9.0] - 2025-03-18
1010

1111
### API Changes
1212

@@ -50,7 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5050
- Add CIFuzz GitHub action ([#429](https://github.com/ron-rs/ron/pull/429))
5151
- Update the arbitrary fuzzer to check arbitrary serde data types, values, and `ron::ser::PrettyConfig`s ([#465](https://github.com/ron-rs/ron/pull/465))
5252
- Add a benchmark for PRs that runs over the latest fuzzer corpus ([#465](https://github.com/ron-rs/ron/pull/465))
53-
- Fuzz serde enum representation and flatten attributes and collect current limitations in ron and serde ([#502](https://github.com/ron-rs/ron/pull/502))
53+
- Fuzz serde enum representations and collect current limitations in ron and serde ([#502](https://github.com/ron-rs/ron/pull/502))
5454
- Update `base64` dependency to version 0.22 ([#529](https://github.com/ron-rs/ron/pull/529))
5555
- Fix issue [#556](https://github.com/ron-rs/ron/issues/556) and update minium dependency versions ([#557](https://github.com/ron-rs/ron/pull/557))
5656

Cargo.toml

Lines changed: 2 additions & 2 deletions
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-alpha.1"
4+
version = "0.9.0"
55
license = "MIT OR Apache-2.0"
66
keywords = ["parser", "serde", "serialization"]
77
authors = [
@@ -40,7 +40,7 @@ serde = { version = "1.0.181", default-features = false, features = ["std", "der
4040
serde_bytes = { version = "0.11", default-features = false, features = ["std"] }
4141
# serde_json supports the std feature from 1.0.60 onwards
4242
serde_json = { version = "1.0.60", default-features = false, features = ["std"] }
43-
option_set = { version = "0.2", default-features = false }
43+
option_set = { version = "0.3", default-features = false }
4444
typetag = { version = "0.2", default-features = false }
4545
bytes = { version = "1.3", default-features = false, features = ["serde"] }
4646

fuzz/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ edition = "2018"
99
cargo-fuzz = true
1010

1111
[dependencies]
12-
arbitrary = { version = "1.0", features = ["derive"] }
13-
libfuzzer-sys = "0.4"
14-
ron = { path = "..", features = ["integer128"] }
15-
serde = { version = "1.0", features = ["derive"] }
16-
erased-serde = { version = "0.3" }
17-
anyhow = { version = "1.0" }
18-
criterion = { version = "0.5" }
19-
serde_path_to_error = { version = "0.1" }
12+
arbitrary = { version = "1.0", default-features = false, features = ["derive"] }
13+
libfuzzer-sys = { version = "0.4", default-features = false, features = ["link_libfuzzer"] }
14+
ron = { path = "..", default-features = false, features = ["integer128"] }
15+
serde = { version = "1.0", default-features = false, features = ["std", "derive"] }
16+
erased-serde = { version = "0.4", default-features = false, features = ["std"] }
17+
anyhow = { version = "1.0", default-features = false, features = ["std"] }
18+
criterion = { version = "0.5", default-features = false }
19+
serde_path_to_error = { version = "0.1", default-features = false }
2020

2121
# Prevent this from interfering with workspaces
2222
[workspace]

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-alpha.1")]
16+
#![doc(html_root_url = "https://docs.rs/ron/0.9.0")]
1717

1818
pub mod de;
1919
pub mod ser;

0 commit comments

Comments
 (0)