From 1686c8c809e8b687e87f5ebead33ab0309164ce0 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 11 May 2024 20:49:49 +0200 Subject: [PATCH] Update scalafmt-core to 3.7.17 (#15) Co-authored-by: Nikolai Sergeev --- .git-blame-ignore-revs | 2 ++ .scalafmt.conf | 2 +- build.sbt | 18 +++++++++--------- 3 files changed, 12 insertions(+), 10 deletions(-) create mode 100644 .git-blame-ignore-revs diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 0000000..cf9393d --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,2 @@ +# Scala Steward: Reformat with scalafmt 3.7.17 +a991a5a887cb76d4495dde5fd99f06b61f16f61b diff --git a/.scalafmt.conf b/.scalafmt.conf index 05621dc..53bf46a 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.7.15" +version = "3.7.17" runner.dialect = scala3 align.preset = most diff --git a/build.sbt b/build.sbt index 54269d5..392ebae 100644 --- a/build.sbt +++ b/build.sbt @@ -1,18 +1,18 @@ val scala3Version = "3.3.3" -val BesomVersion = "0.3.1" +val BesomVersion = "0.3.1" val BesomProxmoxveVersion = "6.3.1-core.0.3" -val BesomCommandVersion = "0.10.0-core.0.3" +val BesomCommandVersion = "0.10.0-core.0.3" inThisBuild( List( organization := "com.nikolaiser", - homepage := Some(url("https://github.com/nikolaiser/biser")), + homepage := Some(url("https://github.com/nikolaiser/biser")), // Alternatively License.Apache2 see https://github.com/sbt/librarymanagement/blob/develop/core/src/main/scala/sbt/librarymanagement/License.scala - licenses := List( + licenses := List( "MIT" -> url("https://opensource.org/licenses/MIT") ), - developers := List( + developers := List( Developer( "nikolaiser", "Nikolai Sergeev", @@ -24,18 +24,18 @@ inThisBuild( ) ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org" -sonatypeRepository := "https://s01.oss.sonatype.org/service/local" +sonatypeRepository := "https://s01.oss.sonatype.org/service/local" ThisBuild / versionScheme := Some("early-semver") lazy val root = project .in(file(".")) .settings( - name := "biser", + name := "biser", scalaVersion := scala3Version, libraryDependencies ++= Seq( - "org.virtuslab" %% "besom-core" % BesomVersion, + "org.virtuslab" %% "besom-core" % BesomVersion, "org.virtuslab" %% "besom-proxmoxve" % BesomProxmoxveVersion, - "org.virtuslab" %% "besom-command" % BesomCommandVersion + "org.virtuslab" %% "besom-command" % BesomCommandVersion ) )