v0.1.3
Couple notable changes this release to be aware of.
Firstly, I've introduced a new sonatypeHost
setting that can be used in the following way:
+ import io.kipp.mill.ci.release.SonatypeHost
- override def sonatypeUri = "https://s01.oss.sonatype.org/service/local"
- override def sonatypeSnapshotUri =
- "https://s01.oss.sonatype.org/content/repositories/snapshots"
+ override def sonatypeHost = Some(SonatypeHost.s01)
This will the automatically set the correct sonatypeUri
and sonatypeSnapshotUri
for you. If you're still using the defaults for these, then no change is necessary.
Secondly, Sonatype will silently fail on you if you don't have a license set or a developer in your PomSettings
. There are now some extra checks for this ensuring you don't get confusing failures with no reasons.
What's Changed
- chore(deps): bump mill-ci-release to 0.1.2 by @ckipp01 in #25
- Update mill-scalafix to 0.2.11 by @scala-steward in #26
- Update scalafmt-core to 3.6.0 by @scala-steward in #27
- feat: add in a sonatypeHost setting and Pom checks by @ckipp01 in #28
Full Changelog: v0.1.2...v0.1.3