Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upRust 1.19 regression, split_by 0.2.0 #42465
Comments
brson
added
the
regression-from-stable-to-nightly
label
Jun 6, 2017
This comment has been minimized.
This comment has been minimized.
|
This is caused by #41785. I think this should be considered acceptable breakage and fixed unless we see to many other cases, but I'd be okay with a revert decision as well. The diff below fixes this specific case for me. diff --git a/src/lib.rs b/src/lib.rs
index 132b5c8..3a3d321 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -103,7 +103,7 @@ impl<'a, R: Read, A: Automaton<&'a [u8]> > Iterator for SplitByIter<'a, R, A> {
/// second
/// ********########
/// third
-/// ################
+/// #################
/// last"#.split_by(&ac);
///
/// assert!(splits.next().unwrap().unwrap().as_slice() == b"first\n"); |
This comment has been minimized.
This comment has been minimized.
|
Hey guys, just to let you know... I'm a bit busy now, but will take care in couple of days. |
jsen-
added a commit
to jsen-/split_by
that referenced
this issue
Jun 11, 2017
This comment has been minimized.
This comment has been minimized.
|
I just pushed version 0.2.1 to crates.io. |
brson
added
regression-from-stable-to-beta
and removed
regression-from-stable-to-nightly
labels
Jun 12, 2017
This comment has been minimized.
This comment has been minimized.
|
Thanks @jsen- . Closing as acceptable breakage. |
brson
closed this
Jun 15, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brson commentedJun 6, 2017
https://github.com/jsen-/split_by
cc @jsen-