Skip to content

Commit 574eacf

Browse files
committed
Release 0.6.2
1 parent 9055801 commit 574eacf

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Release 0.6.2
2+
3+
This release introduces support for serializing / deserializing XML-RPC structs that have
4+
members with names that are reserved keywords in Rust (using the standard raw identifier
5+
syntax).
6+
7+
The oldest supported Rust version was bumped to 1.67.0 to match the `time` crate.
8+
19
## Release 0.6.1
210

311
This release slightly improves interoperability with other XML-RPC implementations.

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ members = [
99
resolver = "2"
1010

1111
[workspace.package]
12-
version = "0.6.1"
12+
version = "0.6.2"
1313
edition = "2021"
1414
rust-version = "1.67.0"
1515
license = "MIT OR Apache-2.0"
1616
authors = ["Fabio Valentini <decathorpe@gmail.com>"]
1717
repository = "https://github.com/ironthree/dxr"
1818

1919
[workspace.dependencies]
20-
dxr = { path = "./dxr", version = "0.6.1" }
21-
dxr_derive = { path = "./dxr_derive", version = "0.6.1" }
22-
dxr_client = { path = "./dxr_client", version = "0.6.1" }
23-
dxr_server = { path = "./dxr_server", version = "0.6.1" }
20+
dxr = { path = "./dxr", version = "0.6.2" }
21+
dxr_derive = { path = "./dxr_derive", version = "0.6.2" }
22+
dxr_client = { path = "./dxr_client", version = "0.6.2" }
23+
dxr_server = { path = "./dxr_server", version = "0.6.2" }
2424

2525
[profile.release]
2626
codegen-units = 1

0 commit comments

Comments
 (0)