Skip to content

Commit

Permalink
Release 0.6.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
decathorpe committed Jul 16, 2023
1 parent 6b57c2e commit dc490a3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## Release 0.6.0-beta.2

**Changed**:

- A custom `PartialEq` implementation for `<struct>` was added, which now properly
ignores the order of struct members.
- The number of closures was reduced by replacing with plain functions, where possible.
- The implementation of `TryFromValue` and `TryToValue` for `Cow<'a, T>` was fixed for
`T = str`, which previously was not covered.

**Internal changes**:

- The script for generating the test coverage report now also runs the example binaries.
- The test suite is now much more comprehensive, resulting in >95% test coverage for
the `dxr` crate.

## Release 0.6.0-beta.1

The relationship between the crates in this project has been simplified. The top-level
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.6.0-beta.1"
version = "0.6.0-beta.2"
edition = "2021"
rust-version = "1.65.0"
license = "MIT OR Apache-2.0"
authors = ["Fabio Valentini <[email protected]>"]
repository = "https://github.com/ironthree/dxr"

[workspace.dependencies]
dxr = { path = "./dxr", version = "0.6.0-beta.1" }
dxr_derive = { path = "./dxr_derive", version = "0.6.0-beta.1" }
dxr_client = { path = "./dxr_client", version = "0.6.0-beta.1" }
dxr_server = { path = "./dxr_server", version = "0.6.0-beta.1" }
dxr = { path = "./dxr", version = "0.6.0-beta.2" }
dxr_derive = { path = "./dxr_derive", version = "0.6.0-beta.2" }
dxr_client = { path = "./dxr_client", version = "0.6.0-beta.2" }
dxr_server = { path = "./dxr_server", version = "0.6.0-beta.2" }

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

0 comments on commit dc490a3

Please sign in to comment.