Skip to content

Commit c4a9653

Browse files
committed
Readme
1 parent f774ede commit c4a9653

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "xml"
33
version = "1.0.0"
4-
authors = ["Vladimir Matveev <[email protected]>"]
4+
authors = ["Vladimir Matveev <[email protected]>", "Kornel (https://github.com/kornelski)"]
55
license = "MIT"
66
description = "An XML library in pure Rust"
77
repository = "https://github.com/kornelski/xml-rs"
88
homepage = "https://lib.rs/crates/xml-rs"
99
documentation = "https://docs.rs/xml-rs/"
1010
readme = "README.md"
11-
keywords = ["xml", "parser", "sax", "parsing", "writer"]
11+
keywords = ["xml", "parser", "sax", "event-reader", "writer"]
1212
categories = ["parser-implementations"]
1313
edition = "2021"
1414
rust-version = "1.70"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ Please report issues at: <https://github.com/kornelski/xml-rs/issues>.
216216

217217
Before reporting issues with XML conformance, please find the relevant section in the XML spec first.
218218

219-
## Upgrading from 0.8 to 1.0
219+
## [Upgrading from 0.8 to 1.0](https://github.com/kornelski/xml-rs/blob/main/Changelog.md)
220220

221221
It should be pretty painless:
222222

223223
* Change `xml-rs = "0.8"` to `xml = "1.0"` in `Cargo.toml`
224-
* If you have an exchaustive `match` on `WriterEvent`, add `_ => {}`. There's no change for reader events.
224+
* Add `_ => {}` to `match` statements where the compiler complains. A new `Doctype` event has been added, and error enums are non-exhaustive.
225225
* If you were creating `ParserConfig` using a struct literal, please use `ParserConfig::new()` and the setters.

0 commit comments

Comments
 (0)