Skip to content

Commit 78b7bc0

Browse files
committed
Restore compatibility with serde >=1.0.181
1 parent 40a06a1 commit 78b7bc0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ include = ["src/*", "LICENSE-MIT.md", "README.md"]
1616
[dependencies]
1717
document-features = { version = "0.2", optional = true }
1818
encoding_rs = { version = "0.8", optional = true }
19-
# FIXME: remove upper bound when https://github.com/tafia/quick-xml/issues/630 is resolved
20-
serde = { version = ">=1.0.100,<1.0.181", optional = true }
19+
serde = { version = ">=1.0.100", optional = true }
2120
tokio = { version = "1.10", optional = true, default-features = false, features = ["io-util"] }
2221
memchr = "2.1"
2322
arbitrary = { version = "1", features = ["derive"], optional = true }

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
MSRV bumped to 1.56! Crate now uses Rust 2021 edition.
1414

15+
Enum representation was changed (it was buggy anyway) to ensure compatibility with
16+
serde >= 1.0.181
17+
1518
### New Features
1619

1720
- [#545]: Resolve well-known namespaces (`xml` and `xmlns`) to their appropriate URIs.
@@ -40,11 +43,13 @@ MSRV bumped to 1.56! Crate now uses Rust 2021 edition.
4043
(and newly added `ElementWriter::write_inner_content_async` of course).
4144
- [#662]: Get rid of some allocations during serde deserialization.
4245
- [#665]: Improve serialization of `xs:list`s when some elements serialized to an empty string.
46+
- [#630]: Fixed compatibility with serde >= 1.0.181
4347

4448
[#545]: https://github.com/tafia/quick-xml/pull/545
4549
[#567]: https://github.com/tafia/quick-xml/issues/567
4650
[#580]: https://github.com/tafia/quick-xml/issues/580
4751
[#619]: https://github.com/tafia/quick-xml/issues/619
52+
[#630]: https://github.com/tafia/quick-xml/issues/630
4853
[#635]: https://github.com/tafia/quick-xml/pull/635
4954
[#643]: https://github.com/tafia/quick-xml/pull/643
5055
[#649]: https://github.com/tafia/quick-xml/pull/646

0 commit comments

Comments
 (0)