-
Notifications
You must be signed in to change notification settings - Fork 102
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
Allow to pass an Executor
when converting Future
s
#254
base: main
Are you sure you want to change the base?
Allow to pass an Executor
when converting Future
s
#254
Conversation
1b1cccb
to
ce78f75
Compare
This is to circumvent scala#179.
ce78f75
to
719e4de
Compare
Took me a bit to figure out why CI failed. It's not the The problem is binary compatibility, MiMa is active through sbt-scala-module, which uses sbt-version-policy, which enables MiMa. And the MiMa error only shows locally if the git clone has the tags pulled.
Now it seems binary compatibility is checked backwards and forwards, @SethTisue why's that? The changes all look backwards compatible to me. |
it's an attempt to simulate checking of source-compatibility. see discussion on scalacenter/sbt-version-policy#71 if we believe that a change is safe, it's fine to just add the MiMa exceptions I also wouldn't mind switching from |
This is to circumvent #179.