Skip to content

Commit 7aba9c2

Browse files
torkleyykvark
authored andcommitted
Update CHANGELOG and bump to 0.7.0
* Add missing entries from v0.6 * Bump version to 0.7.0 and add respective changelog entries
1 parent 50cae2c commit 7aba9c2

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,36 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Next
8-
- Added `decimal_floats` PrettyConfig option, which always includes decimals in floats (`1.0` vs `1`) ([#237](https://github.com/ron-rs/ron/pull/237))
7+
## [0.7.0] - 2021-10-22
8+
9+
- Add `unwrap_variant_newtypes` extension ([#319](https://github.com/ron-rs/ron/pull/319))
910
- Change MSRV to 1.36
1011

12+
## [0.6.6] - 2021-10-21
13+
14+
- Fix serialization of raw identifiers ([#323](https://github.com/ron-rs/ron/pull/323))
15+
16+
## [0.6.5] - 2021-09-09
17+
- support serde renames that start with a digit
18+
19+
## [0.6.3] - 2020-12-18
20+
- bump `base64` dependency to 0.13
21+
22+
## [0.6.2] - 2020-09-09
23+
24+
- Added `decimal_floats` PrettyConfig option, which always includes decimals in floats (`1.0` vs `1`) ([#237](https://github.com/ron-rs/ron/pull/237))
25+
- 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))
26+
- Added `ser::to_writer_pretty` ([#269](https://github.com/ron-rs/ron/pull/269))
27+
- Sped up parsing using table predicates ([#276](https://github.com/ron-rs/ron/pull/276))
28+
29+
## [0.6.1] - 2020-07-14
30+
31+
### Fixes
32+
33+
- Fix array formatting regression ([#260](https://github.com/ron-rs/ron/pull/260))
34+
1135
## [0.6.0] - 2020-05-21
36+
1237
### Additions
1338
- Implement integer support in Numbers ([#210](https://github.com/ron-rs/ron/pull/210))
1439
- Port `ser::Serializer` to `io::Write` ([#206](https://github.com/ron-rs/ron/pull/206))

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.6.0"
4+
version = "0.7.0"
55
license = "MIT/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
@@ -57,7 +57,7 @@ Serializing / Deserializing is as simple as calling `to_string` / `from_str`.
5757
5858
!*/
5959

60-
#![doc(html_root_url = "https://docs.rs/ron/0.6.0")]
60+
#![doc(html_root_url = "https://docs.rs/ron/0.7.0")]
6161

6262
pub mod de;
6363
pub mod ser;

0 commit comments

Comments
 (0)