Skip to content

Commit

Permalink
temporary: Switch to net.tazato repo to cut an out-of-band release
Browse files Browse the repository at this point in the history
  • Loading branch information
CJSmith-0141 committed Aug 9, 2024
1 parent 2ea6efb commit 9ccd1c1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
lazy val V = new {
val SCALA_2_12 = "2.12.18"
val SCALA_2_13 = "2.13.12"
val SCALA_3 = "3.3.0"
val Scalas = Seq(SCALA_3, SCALA_2_13, SCALA_2_12)
val SCALA_3 = "3.3.3"
val Scalas = Seq(SCALA_3, SCALA_2_13)
val ScalafixScalaVersions = Scalas.filterNot(_.startsWith("3"))
}

ThisBuild / scalaVersion := V.Scalas.head
ThisBuild / scalaVersion := "3.3.3"
ThisBuild / crossScalaVersions := V.Scalas
ThisBuild / organization := "com.dwolla"
ThisBuild / organization := "net.tazato"
ThisBuild / homepage := Option(url("https://github.com/Dwolla/fs2-pgp"))
ThisBuild / licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
ThisBuild / startYear := Option(2020)
Expand All @@ -23,10 +23,10 @@ ThisBuild / developers := List(
ThisBuild / githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("test", "mimaReportBinaryIssues", "doc")))
ThisBuild / tlJdkRelease := Option(8)
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"))
ThisBuild / githubWorkflowScalaVersions := Seq("3", "2.13", "2.12")
ThisBuild / githubWorkflowScalaVersions := Seq("3", "2.13")
ThisBuild / tlCiReleaseBranches := Seq("main", "series/0.5")
ThisBuild / tlBaseVersion := "0.5"
ThisBuild / tlSonatypeUseLegacyHost := true
ThisBuild / tlBaseVersion := "0.6"
ThisBuild / tlSonatypeUseLegacyHost := false
ThisBuild / mergifyStewardConfig ~= {
_.map(_.copy(mergeMinors = true, author = "dwolla-oss-scala-steward[bot]"))
}
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.8
sbt.version=1.10.1

0 comments on commit 9ccd1c1

Please sign in to comment.