Skip to content

Commit

Permalink
Release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Feb 1, 2023
1 parent 85c6b17 commit dae424c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 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.2

This is a small release that brings only internal clean-ups with no user-facing code
changes. Documentation as rendered on <https://docs.rs/dxr> should be slightly improved.

## Release 0.5.1

**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.1"
version = "0.5.2"
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.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 }
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", 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 }

[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.1"
version = "0.5.2"
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.1" }
dxr_shared = { path = "../dxr_shared", version = "0.5.2" }
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.1"
version = "0.5.2"
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.1"
version = "0.5.2"
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.1" }
dxr_shared = { path = "../dxr_shared", version = "0.5.2" }
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.1"
version = "0.5.2"
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.1" }
dxr_server = { path = "../dxr_server", version = "0.5.1" }
dxr_shared = { path = "../dxr_shared", version = "0.5.2" }
dxr_server = { path = "../dxr_server", version = "0.5.2" }
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.1"
version = "0.5.2"
edition = "2021"
rust-version = "1.61.0"

Expand Down

0 comments on commit dae424c

Please sign in to comment.