Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
distribution: adopt
- uses: sbt/setup-sbt@v1
- uses: coursier/cache-action@v6
- run: sbt "+scalafmtCheckAll" scalafmtSbtCheck mimaReportBinaryIssues "+test"
- run: sbt "+scalafmtCheckAll" scalafmtSbtCheck "+ mimaReportBinaryIssues" "+test"
- name: cleanup
shell: bash
run: |
Expand Down
9 changes: 2 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ lazy val root = (project in file("."))
lazy val core = (project in file("core"))
.settings(nocomma {
name := "SBinary"

mimaPreviousArtifacts := {
Set.empty
}
libraryDependencies += scalacheck.value % Test
libraryDependencies ++= scalaVersion(scalaXmlDep).value
Compile / unmanagedSourceDirectories += {
Expand All @@ -55,9 +51,8 @@ lazy val core = (project in file("core"))
}
Compile / unmanagedResources += (baseDirectory map { _ / "LICENSE" }).value
mimaPreviousArtifacts := {
val versions = Seq("0.5.0")
val crossVersion = if (crossPaths.value) CrossVersion.binary else CrossVersion.disabled
versions.map(v => organization.value % moduleName.value % v cross crossVersion).toSet
val versions = Seq("0.5.1")
versions.map(v => organization.value %% moduleName.value % v).toSet
},
})
.settings(
Expand Down
Loading