Skip to content

Commit

Permalink
Release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Nov 23, 2022
1 parent c0a67b8 commit e6ee9e7
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 15 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Release 0.5.1

**Changed**:

The `Call.as_xml_rpc` method is now `pub` instead of only `pub(crate)`. This makes
implementing third-party clients based on `dxr` (i.e. clients not based on `reqwest`)
easier, and is a first step towards making the client functionality modular, similar
to the server support.

## Release 0.5.0

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

version = "0.5.0"
version = "0.5.1"
edition = "2021"
rust-version = "1.61.0"

Expand Down Expand Up @@ -49,11 +49,11 @@ path = "tests/echo_one.rs"
required-features = ["derive", "client", "server", "server-axum", "i8", "nil"]

[dependencies]
dxr_shared = { path = "../dxr_shared", version = "0.5.0" }
dxr_derive = { path = "../dxr_derive", version = "0.5.0", optional = true }
dxr_client = { path = "../dxr_client", version = "0.5.0", optional = true }
dxr_server = { path = "../dxr_server", version = "0.5.0", optional = true }
dxr_server_axum = { path = "../dxr_server_axum", version = "0.5.0", optional = true }
dxr_shared = { path = "../dxr_shared", version = "0.5.1" }
dxr_derive = { path = "../dxr_derive", version = "0.5.1", optional = true }
dxr_client = { path = "../dxr_client", version = "0.5.1", optional = true }
dxr_server = { path = "../dxr_server", version = "0.5.1", optional = true }
dxr_server_axum = { path = "../dxr_server_axum", version = "0.5.1", optional = true }

[dev-dependencies]
# integration tests use the "clock" feature of chrono
Expand Down
4 changes: 2 additions & 2 deletions dxr_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr_client"
description = "Declarative XML-RPC (client implementation)"
license = "MIT OR Apache-2.0"

version = "0.5.0"
version = "0.5.1"
edition = "2021"
rust-version = "1.61.0"

Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/ironthree/dxr"

[dependencies]
anyhow = "1.0.53"
dxr_shared = { path = "../dxr_shared", version = "0.5.0" }
dxr_shared = { path = "../dxr_shared", version = "0.5.1" }
http = "0.2.6"
log = "0.4.13"
quick-xml = { version = "0.25" , features = ["serialize"] }
Expand Down
2 changes: 1 addition & 1 deletion dxr_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr_derive"
description = "Declarative XML-RPC (derive macros)"
license = "MIT OR Apache-2.0"

version = "0.5.0"
version = "0.5.1"
edition = "2021"
rust-version = "1.61.0"

Expand Down
4 changes: 2 additions & 2 deletions dxr_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr_server"
description = "Declarative XML-RPC (server implementation)"
license = "MIT OR Apache-2.0"

version = "0.5.0"
version = "0.5.1"
edition = "2021"
rust-version = "1.61.0"

Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/ironthree/dxr"

[dependencies]
async-trait = "0.1.53"
dxr_shared = { path = "../dxr_shared", version = "0.5.0" }
dxr_shared = { path = "../dxr_shared", version = "0.5.1" }
http = "0.2.6"
quick-xml = { version = "0.25" , features = ["serialize"] }

Expand Down
6 changes: 3 additions & 3 deletions dxr_server_axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr_server_axum"
description = "Declarative XML-RPC (axum server implementation)"
license = "MIT OR Apache-2.0"

version = "0.5.0"
version = "0.5.1"
edition = "2021"
rust-version = "1.61.0"

Expand All @@ -15,8 +15,8 @@ repository = "https://github.com/ironthree/dxr"
[dependencies]
anyhow = "1.0.53"
axum = "0.5.4"
dxr_shared = { path = "../dxr_shared", version = "0.5.0" }
dxr_server = { path = "../dxr_server", version = "0.5.0" }
dxr_shared = { path = "../dxr_shared", version = "0.5.1" }
dxr_server = { path = "../dxr_server", version = "0.5.1" }
tokio = { version = "1.14", features = ["sync"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion dxr_shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dxr_shared"
description = "Declarative XML-RPC (implementation details)"
license = "MIT OR Apache-2.0"

version = "0.5.0"
version = "0.5.1"
edition = "2021"
rust-version = "1.61.0"

Expand Down

0 comments on commit e6ee9e7

Please sign in to comment.