Skip to content

Commit

Permalink
Release 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Mar 11, 2023
1 parent aacfb87 commit 75a0352
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 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.5.3

This release adds feature flags for selecting a non-default TLS backend for `reqwest`
in `dxr_client`. There should be no change to the default behaviour (the `default-tls`
feature of `reqwest`). To use a different TLS backend (i.e. `rustls`), use `dxr` with
`default-features = false` and enable the `client-rustls-tls` feature.

## Release 0.5.2

This is a small release that brings only internal clean-ups with no user-facing code
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.2"
version = "0.5.3"
edition = "2021"
rust-version = "1.63.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.2" }
dxr_derive = { path = "../dxr_derive", version = "0.5.2", optional = true }
dxr_client = { path = "../dxr_client", version = "0.5.2", default-features = false, optional = true }
dxr_server = { path = "../dxr_server", version = "0.5.2", optional = true }
dxr_server_axum = { path = "../dxr_server_axum", version = "0.5.2", optional = true }
dxr_shared = { path = "../dxr_shared", version = "0.5.3" }
dxr_derive = { path = "../dxr_derive", version = "0.5.3", optional = true }
dxr_client = { path = "../dxr_client", version = "0.5.3", default-features = false, optional = true }
dxr_server = { path = "../dxr_server", version = "0.5.3", optional = true }
dxr_server_axum = { path = "../dxr_server_axum", version = "0.5.3", 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.2"
version = "0.5.3"
edition = "2021"
rust-version = "1.63.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.2" }
dxr_shared = { path = "../dxr_shared", version = "0.5.3" }
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.2"
version = "0.5.3"
edition = "2021"
rust-version = "1.63.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.2"
version = "0.5.3"
edition = "2021"
rust-version = "1.63.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.2" }
dxr_shared = { path = "../dxr_shared", version = "0.5.3" }
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.2"
version = "0.5.3"
edition = "2021"
rust-version = "1.63.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.2" }
dxr_server = { path = "../dxr_server", version = "0.5.2" }
dxr_shared = { path = "../dxr_shared", version = "0.5.3" }
dxr_server = { path = "../dxr_server", version = "0.5.3" }
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.2"
version = "0.5.3"
edition = "2021"
rust-version = "1.63.0"

Expand Down

0 comments on commit 75a0352

Please sign in to comment.