Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Feb 5, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 404a320 commit 42afeb9
Showing 4 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Release 0.1.1

This version fixes some minor issues that were discovered since the last release.

Added:

- added some client-server roundtrip tests using a simple echo server implementation
(in `dxr/tests/echo.rs`)

Fixed:

- fixed infinite recursion in `(T,)` call parameter serialization
- make sure `Call` values can be sent across threads
- cleaned up minor formatting issues in docs and doctests
- fixed README.md badge links in the dxr_shared crate

## Release 0.1.0

Initial release.
6 changes: 3 additions & 3 deletions dxr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "dxr"
description = "Declarative XML-RPC"
license = "MIT OR Apache-2.0"

version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.56.0"

@@ -34,12 +34,12 @@ required-features = ["derive", "client", "server", "i8", "nil"]

[dependencies]
# default features
dxr_shared = { path = "../dxr_shared", version = "0.1.0" }
dxr_shared = { path = "../dxr_shared", version = "0.1.1" }
log = "0.4.13"
quick-xml = { version = "0.22" , features = ["serialize"] }

# derive feature
dxr_derive = { path = "../dxr_derive", version = "0.1.0", optional = true }
dxr_derive = { path = "../dxr_derive", version = "0.1.1", optional = true }

# client feature
reqwest = { version = "0.11", features = ["cookies"] , optional = true }
2 changes: 1 addition & 1 deletion dxr_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "dxr_derive"
description = "Implementation details of DXR (derive macros)"
license = "MIT OR Apache-2.0"

version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.56.0"

2 changes: 1 addition & 1 deletion dxr_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "dxr_shared"
description = "Implementation details of DXR (XML-RPC value de/serialization)"
license = "MIT OR Apache-2.0"

version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.56.0"

0 comments on commit 42afeb9

Please sign in to comment.