Skip to content

Commit

Permalink
chore: prepare for v1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tommilligan committed Sep 26, 2021
1 parent 0a32464 commit 659b66b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Unreleased

# v1.0.0

## Removed

- `assert_ne` no longer warns if values match using `PartialEq` but not with `Debug`. This was noted as no longer being necessary after Rust 1.25 (current MSRV 1.35.0)

## Added

- Officially support `no_std` (thanks to [@Luro02](https://github.com/Luro02) for the report and reviews!). Adds the `std` and `alloc` features to the `pretty_assertions` crate, with `std` enabled by default ([#83](https://github.com/colin-kiegel/rust-pretty-assertions/pull/83), [@tommilligan](https://github.com/tommilligan))
- Adds the `unstable` feature to the `pretty_assertions` crate, for use with nightly rustc ([#81](https://github.com/colin-kiegel/rust-pretty-assertions/pull/81), [@tommilligan](https://github.com/tommilligan))
- Add a drop in replacement for the unstable stdlib `assert_matches` macro, behind the `unstable` flag - thanks [@gilescope](https://github.com/gilescope) for the suggestion! ([#81](https://github.com/colin-kiegel/rust-pretty-assertions/issues/81), [@tommilligan](https://github.com/tommilligan))
Expand Down
2 changes: 1 addition & 1 deletion pretty_assertions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pretty_assertions"
version = "0.7.2"
version = "1.0.0"
authors = [
"Colin Kiegel <kiegel@gmx.de>",
"Florent Fayolle <florent.fayolle69@gmail.com>",
Expand Down

0 comments on commit 659b66b

Please sign in to comment.