-
Notifications
You must be signed in to change notification settings - Fork 92
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
Drop Scala 2.11 & update dependencies #693
Conversation
Codecov ReportBase: 87.95% // Head: 87.82% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #693 +/- ##
==========================================
- Coverage 87.95% 87.82% -0.14%
==========================================
Files 141 141
Lines 1494 1519 +25
Branches 33 241 +208
==========================================
+ Hits 1314 1334 +20
- Misses 180 185 +5
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@@ -67,7 +67,7 @@ class Feedback( | |||
adjustedLevel match { | |||
case Levels.Error => reporter.error(pos, report) | |||
case Levels.Warning => reporter.warning(pos, report) | |||
case Levels.Info => reporter.info(pos, report, force = false) | |||
case Levels.Info => reporter.echo(pos, report) |
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.
info
was deprecated with Scala 2.12.
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.
I suggest the next version we release to be a major version for that reason.
Thank you for doing this.
Drops support for Scala 2.11 as discussed in #682.
Updates all dependencies, especially sbt-scoverage.
Fixes #682.
Closes #684.
Closes #685.
Closes #687.
Closes #688.
Closes #689.
Closes #690.
Closes #691.