Skip to content

Commit

Permalink
Merge pull request #385 from armanbilge/fix/2.13.9-target-deprecated
Browse files Browse the repository at this point in the history
Do not use deprecated `-target` option on 2.13.9+
  • Loading branch information
armanbilge committed Oct 9, 2022
2 parents d2601da + 0db6f5d commit e1d32a3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,12 @@ object TypelevelSettingsPlugin extends AutoPlugin {
case V(V(2, 12, Some(build), _)) if build >= 5 =>
releaseOption ++ oldTargetOption

case V(V(2, 13, _, _)) =>
case V(V(2, 13, Some(build), _)) if build <= 8 =>
releaseOption ++ newTargetOption

case V(V(2, 13, Some(build), _)) if build >= 9 =>
releaseOption

case V(V(3, _, _, _)) =>
releaseOption

Expand Down

0 comments on commit e1d32a3

Please sign in to comment.