scoverage / scalac-scoverage-plugin

Scoverage Scala Code Coverage Core Libs
https://github.com/scoverage
Apache License 2.0
423 stars 126 forks source link

chore: drop anything older than 2.13.10 #604

Closed ckipp01 closed 4 months ago

ckipp01 commented 4 months ago

Again, for context for anyone that stumbles on this, bumping your patch version should be easy in whatever context your in. SemanticDB has started to do the same for old 2.12 and 2.13 versions, so I'm just following suite. In theory we don't need to do this, but it's the easier option than refactoring certain module to not use scalafix/semanticdb. It didn't cause an issue last time, so hopefully the same goes for this.

mihaisoloi commented 4 months ago

@ckipp01 I don't know what I'm doing wrong but when I tried bumping Scala to 2.13.13 I can only get it to work with scoverage 2.0.11 and not 2.1.0 due to this error. I'm using sbt 1.9.9, not sure why it's saying it needs it for sbt 1.0

image
ckipp01 commented 4 months ago

@ckipp01 I don't know what I'm doing wrong but when I tried bumping Scala to 2.13.13 I can only get it to work with scoverage 2.0.11 and not 2.1.0 due to this error. I'm using sbt 1.9.9, not sure why it's saying it needs it for sbt 1.0 image

Keep in mind that you'll simply want to bump your sbt-scoverage version, and the latest is 2.0.11. This version of the sbt plugin will bring in the latest version of the compiler plugins, which is 2.1.0. So don't be confused by that.

mihaisoloi commented 4 months ago

that was it, thank you