Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update logback-classic to 1.2.7 #521

Merged
Merged
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
26 changes: 18 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbtghactions.UseRef

val Scala213 = "2.13.6"
val Scala212 = "2.12.15"
val Scala3 = "3.0.2"
val Scala3 = "3.0.2"

enablePlugins(SonatypeCiReleasePlugin)

Expand All @@ -18,7 +18,7 @@ ThisBuild / githubWorkflowJavaVersions := Seq("adopt@1.8", "adopt@1.11")
ThisBuild / versionIntroduced := Map(
"2.12" -> "1.2.0",
"2.13" -> "1.2.0",
"3.0.0" -> "1.3.1",
"3.0.0" -> "1.3.1"
)

val MicrositesCond = s"matrix.scala == '$Scala212'"
Expand Down Expand Up @@ -64,7 +64,7 @@ ThisBuild / githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(R

ThisBuild / githubWorkflowPublish := Seq(
WorkflowStep.Sbt(
List("release"),
List("release")
)
) ++ micrositeWorkflowSteps(Some(MicrositesCond)).toSeq :+ WorkflowStep.Sbt(
List("docs/publishMicrosite"),
Expand All @@ -75,7 +75,7 @@ val catsV = "2.6.1"
val catsEffectV = "3.2.9"
val slf4jV = "1.7.32"
val munitCatsEffectV = "1.0.5"
val logbackClassicV = "1.2.6"
val logbackClassicV = "1.2.7"

Global / onChangedBuildSource := ReloadOnSourceChanges

Expand Down Expand Up @@ -152,7 +152,7 @@ lazy val slf4j = project

lazy val commonSettings = Seq(
libraryDependencies ++= Seq(
"org.typelevel" %%% "munit-cats-effect-3" % munitCatsEffectV % Test,
"org.typelevel" %%% "munit-cats-effect-3" % munitCatsEffectV % Test
)
)

Expand All @@ -169,9 +169,19 @@ lazy val releaseSettings = {
licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html")),
startYear := Some(2018),
developers := List(
Developer("christopherdavenport", "Christopher Davenport", "chris@christopherdavenport.tech", new java.net.URL("https://christopherdavenport.github.io/")),
Developer("lorandszakacs", "Loránd Szakács", "lorand.szakacs@protonmail.com", new java.net.URL("https://github.com/lorandszakacs")),
),
Developer(
"christopherdavenport",
"Christopher Davenport",
"chris@christopherdavenport.tech",
new java.net.URL("https://christopherdavenport.github.io/")
),
Developer(
"lorandszakacs",
"Loránd Szakács",
"lorand.szakacs@protonmail.com",
new java.net.URL("https://github.com/lorandszakacs")
)
)
)
}

Expand Down