Skip to content

Commit

Permalink
Update scalafmt-core to 3.7.17 (#15)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikolai Sergeev <mail@nikolaiser.com>
  • Loading branch information
scala-steward and nikolaiser authored May 11, 2024
1 parent f59bb6a commit 1686c8c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.17
a991a5a887cb76d4495dde5fd99f06b61f16f61b
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.7.15"
version = "3.7.17"
runner.dialect = scala3

align.preset = most
Expand Down
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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
)
)

0 comments on commit 1686c8c

Please sign in to comment.