Skip to content

Commit

Permalink
Release 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Jul 13, 2024
1 parent dde7840 commit 7903356
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Release 0.6.3

This release contains a fix for a compilation failure when using the derive macros for
`TryToValue` and `TryFromValue` and a custom `Result` type is in scope.

The oldest supported Rust version was bumped to 1.70.0 to match crate dependencies.

## Release 0.6.2

This release introduces support for serializing / deserializing XML-RPC structs that have
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.2"
version = "0.6.3"
edition = "2021"
rust-version = "1.70.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.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" }
dxr = { path = "./dxr", version = "0.6.3" }
dxr_derive = { path = "./dxr_derive", version = "0.6.3" }
dxr_client = { path = "./dxr_client", version = "0.6.3" }
dxr_server = { path = "./dxr_server", version = "0.6.3" }

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

0 comments on commit 7903356

Please sign in to comment.