Skip to content

Commit

Permalink
proptest-derive: prepare 0.5.1 patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
rexmas committed Dec 15, 2024
1 parent ca308b0 commit 575b17e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions proptest-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
## Unreleased

## 0.5.1

- Fix non-local impl nightly warning with allow(non_local_definitions)
((\#531)[https://github.com/proptest-rs/proptest/pull/531])
- Fix bounds generation for generics in derive(Arbitrary). The implementation
of UseTracker expects that iteration over items of used_map gives items in
insertion order. However, the order of BTreeSet is based on Ord, not
insertion. ((\#511)[https://github.com/proptest-rs/proptest/pull/511])

## 0.5

### Features
Expand Down
16 changes: 8 additions & 8 deletions proptest-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "proptest-derive"
version = "0.5.0"
authors = ["Mazdak Farrokhzad <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
name = "proptest-derive"
version = "0.5.1"
authors = ["Mazdak Farrokhzad <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"

repository = "https://github.com/proptest-rs/proptest"
repository = "https://github.com/proptest-rs/proptest"
documentation = "https://proptest-rs.github.io/proptest/proptest-derive/index.html"

keywords = ["derive", "arbitrary", "proptest", "testing", "quickcheck"]
categories = ["development-tools::testing"]
keywords = ["derive", "arbitrary", "proptest", "testing", "quickcheck"]
categories = ["development-tools::testing"]

description = """
Custom-derive for the Arbitrary trait of proptest.
Expand Down

0 comments on commit 575b17e

Please sign in to comment.