Skip to content

Commit

Permalink
Release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Sep 21, 2023
1 parent 0dddf30 commit 02eae68
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Release 0.6.1

This release slightly improves interoperability with other XML-RPC implementations.
Some implementations line-wrap base64-encoded strings in the `<base64>` type, which is now
supported. Previous releases of `dxr` rejected base64 values that included any whitespace.

## Release 0.6.0

This release includes changes from v0.6.0-beta.1 and v0.6.0-beta.2.
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.0"
version = "0.6.1"
edition = "2021"
rust-version = "1.65.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.0" }
dxr_derive = { path = "./dxr_derive", version = "0.6.0" }
dxr_client = { path = "./dxr_client", version = "0.6.0" }
dxr_server = { path = "./dxr_server", version = "0.6.0" }
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" }

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

0 comments on commit 02eae68

Please sign in to comment.