Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Dec 1, 2024
1 parent dc0b2f6 commit bd53c3d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## Release 0.7.0

This release includes a simplified client API that removes the unnecessary indirection
caused by the `Call` struct, in addition to some notable dependency updates (hyper v1)
that are part of the public API.

Major dependency updates:

- axum v0.6 → v0.7
- base64 v0.21 → v0.22
- hyper v0.14 → v1
- proc-macro-crate v1 → v3
- quick-xml v0.30 → 0.37
- reqwest v0.11 → v0.12

## Release 0.6.3

This release contains a fix for a compilation failure when using the derive macros for
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ members = [
resolver = "2"

[workspace.package]
version = "0.7.0-dev"
version = "0.7.0"
edition = "2021"
rust-version = "1.70.0"
license = "MIT OR Apache-2.0"
authors = ["Fabio Valentini <decathorpe@gmail.com>"]
repository = "https://github.com/ironthree/dxr"

[workspace.dependencies]
dxr = { path = "./dxr", version = "0.7.0-dev" }
dxr_derive = { path = "./dxr_derive", version = "0.7.0-dev" }
dxr_client = { path = "./dxr_client", version = "0.7.0-dev" }
dxr_server = { path = "./dxr_server", version = "0.7.0-dev" }
dxr = { path = "./dxr", version = "0.7.0" }
dxr_derive = { path = "./dxr_derive", version = "0.7.0" }
dxr_client = { path = "./dxr_client", version = "0.7.0" }
dxr_server = { path = "./dxr_server", version = "0.7.0" }

[profile.release]
codegen-units = 1
Expand Down

0 comments on commit bd53c3d

Please sign in to comment.