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 158c8c9 commit eb8b595
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions proptest-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Unreleased

## 0.5.1

- Fix non-local impl nightly warning with allow(non_local_definitions)
((\#531)[https://github.com/proptest-rs/proptest/pull/531])
- Adds support for re-exporting crate. `proptest-derive` now works correctly
when `proptest` is re-exported from another crate. This removes the
requirement for `proptest` to be a direct dependency.
((\#530)[https://github.com/proptest-rs/proptest/pull/530])
- 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 <twingoow@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
name = "proptest-derive"
version = "0.5.1"
authors = ["Mazdak Farrokhzad <twingoow@gmail.com>"]
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 eb8b595

Please sign in to comment.