From f0b41ec66ffbdfceee60e823b9bd7a9ff406d036 Mon Sep 17 00:00:00 2001 From: "j5ik2o-bot[bot]" <82752207+j5ik2o-bot[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 17:05:10 +0000 Subject: [PATCH 1/2] build: Update scalafmt-core from 3.0.2 to 3.0.3 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 31783fa..1b8a53c 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.0.2 +version = 3.0.3 style = defaultWithAlign danglingParentheses.preset = true indentOperator.preset = spray From d99a3af91a8fbfb6d69046393c47164e4da1ef59 Mon Sep 17 00:00:00 2001 From: "j5ik2o-bot[bot]" <82752207+j5ik2o-bot[bot]@users.noreply.github.com> Date: Fri, 10 Sep 2021 17:05:14 +0000 Subject: [PATCH 2/2] Reformat with scalafmt 3.0.3 --- build.sbt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index 7fe57ac..724bc71 100644 --- a/build.sbt +++ b/build.sbt @@ -9,8 +9,8 @@ def crossScalacOptions(scalaVersion: String): Seq[String] = CrossVersion.partial lazy val baseSettings = Seq( organization := "com.github.j5ik2o", - homepage := Some(url("https://github.com/j5ik2o/sw4jj")), - licenses := List("The MIT License" -> url("http://opensource.org/licenses/MIT")), + homepage := Some(url("https://github.com/j5ik2o/sw4jj")), + licenses := List("The MIT License" -> url("http://opensource.org/licenses/MIT")), developers := List( Developer( id = "j5ik2o", @@ -19,7 +19,7 @@ lazy val baseSettings = Seq( url = url("https://blog.j5ik2o.me") ) ), - scalaVersion := Versions.scala211Version, + scalaVersion := Versions.scala211Version, crossScalaVersions := Seq(Versions.scala211Version, Versions.scala212Version, Versions.scala213Version), scalacOptions ++= (Seq( "-feature", @@ -37,11 +37,11 @@ lazy val baseSettings = Seq( scalatest.scalatest % Test ), ThisBuild / scalafixScalaBinaryVersion := CrossVersion.binaryScalaVersion(scalaVersion.value), - semanticdbEnabled := true, - semanticdbVersion := scalafixSemanticdb.revision, - Test / publishArtifact := false, - Test / fork := true, - Test / parallelExecution := false + semanticdbEnabled := true, + semanticdbVersion := scalafixSemanticdb.revision, + Test / publishArtifact := false, + Test / fork := true, + Test / parallelExecution := false ) val root = (project in file("."))