Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions proptest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Unreleased

### Deprecations

- `into_iter()` has been deprecated for arrays in 1.41 and replaced with
`iter()`. See[Issue #66145](https://github.com/rust-lang/rust/issues/66145) .

## 0.9.4

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion proptest/src/arbitrary/_std/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ arbitrary!(ErrorKind, Union<Just<Self>>;
, Other
, UnexpectedEof
// TODO: watch this type for variant-additions.
].into_iter().cloned().map(Just))
].iter().cloned().map(Just))
);

arbitrary!(
Expand Down