v2.24.1
2.24.1 - 2023-11-17
Bug Fix
-
Fix:
sbt-devoops-release-version-policy
cannot handle aggregate projects with different cross Scala versions (#414
)sbt-release
, which is used bysbt-devoops-release-version-policy
, can't handle aggregate projects with different cross Scala versions. (Issue reproted)e.g.) So
sbt-release
can't handle a project structured like the following.- root
- module1 - Scala 2 and 3
- module2 - Scala 2
It releases artifacts for only Scala 2.
This Release fixed it to handle it properly based on sbt/sbt-release#214 (comment) with a way to skip test if it's set to be skipped.
There are
- an option to do or don't do cross Scala version release (default: do cross Scala versions) and
- an option to set a publish command (default:
publish
).
- root