Skip to content

Commit

Permalink
Release 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Jan 28, 2024
1 parent 9055801 commit 574eacf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Release 0.6.2

This release introduces support for serializing / deserializing XML-RPC structs that have
members with names that are reserved keywords in Rust (using the standard raw identifier
syntax).

The oldest supported Rust version was bumped to 1.67.0 to match the `time` crate.

## Release 0.6.1

This release slightly improves interoperability with other XML-RPC implementations.
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ members = [
resolver = "2"

[workspace.package]
version = "0.6.1"
version = "0.6.2"
edition = "2021"
rust-version = "1.67.0"
license = "MIT OR Apache-2.0"
authors = ["Fabio Valentini <[email protected]>"]
repository = "https://github.com/ironthree/dxr"

[workspace.dependencies]
dxr = { path = "./dxr", version = "0.6.1" }
dxr_derive = { path = "./dxr_derive", version = "0.6.1" }
dxr_client = { path = "./dxr_client", version = "0.6.1" }
dxr_server = { path = "./dxr_server", version = "0.6.1" }
dxr = { path = "./dxr", version = "0.6.2" }
dxr_derive = { path = "./dxr_derive", version = "0.6.2" }
dxr_client = { path = "./dxr_client", version = "0.6.2" }
dxr_server = { path = "./dxr_server", version = "0.6.2" }

[profile.release]
codegen-units = 1
Expand Down

0 comments on commit 574eacf

Please sign in to comment.