-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revert 2.12.0-M4 changes #395
Conversation
These were changes that were made for fixing errors in a 2.12 milestone and also a fix that avoided breaking binary compatability in 1.13.0 for the bootstrap process.
This change cause ambiguous error with Scala 2.11.12 and
|
@@ -30,8 +30,7 @@ sealed trait Cogen[T] extends Serializable { | |||
|
|||
object Cogen extends CogenArities with CogenLowPriority { | |||
|
|||
// See https://github.com/rickynils/scalacheck/issues/230 for dummy expl. | |||
def apply[T](implicit ev: Cogen[T], dummy: Cogen[T]): Cogen[T] = ev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this broke bincompat
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it did break bincompat. I believe it should have only been released in 1.14.0, and not in 1.13.x.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm. Interesting. I am seeing the breakage in 1.13.x.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is possible something is transitively pulling in 1.14.x in my project. I'll check that.
These were changes that were made for fixing errors in a 2.12 milestone and also a fix that avoided breaking binary compatability in 1.13.0 for the bootstrap process.
This reverts #230 it was already partially reverted in 8abd189