Skip to content

Commit

Permalink
Merge pull request #1672 from bjaglin/post0102
Browse files Browse the repository at this point in the history
Post 0.10.2
  • Loading branch information
bjaglin authored Sep 15, 2022
2 parents d68d223 + 63a086f commit 480cda1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
- uses: olafurpg/setup-scala@v13
- uses: olafurpg/setup-gpg@v3
- run: git fetch --unshallow
- name: Check that major or minor was bumped upon compatibility breakage
if: startsWith(github.ref, 'refs/tags/v')
run: sbt versionCheck
- name: Publish ${{ github.ref }}
run: sbt ci-release
env:
Expand Down
3 changes: 1 addition & 2 deletions project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
)

private val PreviousScalaVersion: Map[String, String] = Map(
"2.12.17" -> "2.12.16"
)

override def buildSettings: Seq[Setting[_]] = List(
Expand All @@ -195,7 +194,7 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
// don't publish scala 3 artifacts for now
publish / skip := (if ((publish / skip).value) true
else scalaBinaryVersion.value == "3"),
versionPolicyIntention := Compatibility.None,
versionPolicyIntention := Compatibility.BinaryCompatible,
scalacOptions ++= compilerOptions.value,
scalacOptions ++= semanticdbSyntheticsCompilerOption.value,
Compile / console / scalacOptions :=
Expand Down

0 comments on commit 480cda1

Please sign in to comment.