diff --git a/CHANGELOG.md b/CHANGELOG.md index 02e10123..2520b588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,36 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Next -- Added `decimal_floats` PrettyConfig option, which always includes decimals in floats (`1.0` vs `1`) ([#237](https://github.com/ron-rs/ron/pull/237)) +## [0.7.0] - 2021-10-22 + +- Add `unwrap_variant_newtypes` extension ([#319](https://github.com/ron-rs/ron/pull/319)) - Change MSRV to 1.36 +## [0.6.6] - 2021-10-21 + +- Fix serialization of raw identifiers ([#323](https://github.com/ron-rs/ron/pull/323)) + +## [0.6.5] - 2021-09-09 +- support serde renames that start with a digit + +## [0.6.3] - 2020-12-18 +- bump `base64` dependency to 0.13 + +## [0.6.2] - 2020-09-09 + +- Added `decimal_floats` PrettyConfig option, which always includes decimals in floats (`1.0` vs `1`) ([#237](https://github.com/ron-rs/ron/pull/237)) +- Fixed EBNF grammar for raw strings ([#236](https://github.com/ron-rs/ron/pull/236), unsigned integers ([#248](https://github.com/ron-rs/ron/pull/248)), and nested comments ([#272](https://github.com/ron-rs/ron/pull/272)) +- Added `ser::to_writer_pretty` ([#269](https://github.com/ron-rs/ron/pull/269)) +- Sped up parsing using table predicates ([#276](https://github.com/ron-rs/ron/pull/276)) + +## [0.6.1] - 2020-07-14 + +### Fixes + +- Fix array formatting regression ([#260](https://github.com/ron-rs/ron/pull/260)) + ## [0.6.0] - 2020-05-21 + ### Additions - Implement integer support in Numbers ([#210](https://github.com/ron-rs/ron/pull/210)) - Port `ser::Serializer` to `io::Write` ([#206](https://github.com/ron-rs/ron/pull/206)) diff --git a/Cargo.toml b/Cargo.toml index bef73ac0..346f514a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ron" # Memo: update version in src/lib.rs too (doc link) -version = "0.6.0" +version = "0.7.0" license = "MIT/Apache-2.0" keywords = ["parser", "serde", "serialization"] authors = [ diff --git a/src/lib.rs b/src/lib.rs index d9bf34ae..55fddcc7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -57,7 +57,7 @@ Serializing / Deserializing is as simple as calling `to_string` / `from_str`. !*/ -#![doc(html_root_url = "https://docs.rs/ron/0.6.0")] +#![doc(html_root_url = "https://docs.rs/ron/0.7.0")] pub mod de; pub mod ser;