Skip to content

Commit

Permalink
Release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Apr 7, 2024
1 parent 37a5798 commit 96fafa1
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Release 0.5.5

This release includes no changes compared to 0.5.4 other than deprecation warnings
for two crates that were removed and / or renamed with version 0.6.0.

## Release 0.5.4

This release includes a fix for string-typed values, which were previously accidentally
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.4"
version = "0.5.5"
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.4" }
dxr_derive = { path = "../dxr_derive", version = "0.5.4", optional = true }
dxr_client = { path = "../dxr_client", version = "0.5.4", default-features = false, optional = true }
dxr_server = { path = "../dxr_server", version = "0.5.4", optional = true }
dxr_server_axum = { path = "../dxr_server_axum", version = "0.5.4", optional = true }
dxr_shared = { path = "../dxr_shared", version = "0.5.5" }
dxr_derive = { path = "../dxr_derive", version = "0.5.5", optional = true }
dxr_client = { path = "../dxr_client", version = "0.5.5", default-features = false, optional = true }
dxr_server = { path = "../dxr_server", version = "0.5.5", optional = true }
dxr_server_axum = { path = "../dxr_server_axum", version = "0.5.5", 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.4"
version = "0.5.5"
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.4" }
dxr_shared = { path = "../dxr_shared", version = "0.5.5" }
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.4"
version = "0.5.5"
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.4"
version = "0.5.5"
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.4" }
dxr_shared = { path = "../dxr_shared", version = "0.5.5" }
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.4"
version = "0.5.5"
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.4" }
dxr_server = { path = "../dxr_server", version = "0.5.4" }
dxr_shared = { path = "../dxr_shared", version = "0.5.5" }
dxr_server = { path = "../dxr_server", version = "0.5.5" }
tokio = { version = "1.14", features = ["sync"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion dxr_server_axum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#![warn(clippy::unwrap_used)]

#![deprecated(
since = "0.5.4",
since = "0.5.5",
note = "The dxr_server_axum crate was merged into the dxr_server crate with version 0.6.0."
)]

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.4"
version = "0.5.5"
edition = "2021"
rust-version = "1.63.0"

Expand Down
2 changes: 1 addition & 1 deletion dxr_shared/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#![warn(unreachable_pub)]
#![warn(clippy::unwrap_used)]
#![deprecated(
since = "0.5.4",
since = "0.5.5",
note = "The dxr_shared crate was renamed to dxr with version 0.6.0."
)]

Expand Down

0 comments on commit 96fafa1

Please sign in to comment.