From bf7358b2dc6912f9b48b88a80c1da6151e520fc4 Mon Sep 17 00:00:00 2001 From: John Duffell Date: Tue, 27 Feb 2024 10:53:33 +0000 Subject: [PATCH 1/2] update versions in readme examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index daca39b8..75587f64 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ if (logger.isDebugEnabled) logger.debug(s"Some $expensive message!") A compatible logging backend is [Logback](http://logback.qos.ch), add it to your sbt build definition: ```scala -libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.10" +libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.14" ``` If you are looking for a version compatible with Scala 2.10, check out Scala Logging 2.x. @@ -36,7 +36,7 @@ Scala Logging is published to Sonatype OSS and Maven Central: sbt users may add this to their `build.sbt`: ```scala -libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.4" +libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" ``` ## Using Scala Logging From d02594edf03ed7ab8f1887ecb5587e2a8e73b9df Mon Sep 17 00:00:00 2001 From: John Duffell Date: Mon, 22 Apr 2024 11:42:59 +0100 Subject: [PATCH 2/2] match the compiled version with the readme --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 5c7bac96..19d0472b 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,7 +1,7 @@ import sbt._ object Version { - val logback = "1.2.12" + val logback = "1.4.14" val mockito = "3.2.10.0" val scalaTest = "3.2.18" val slf4j = "1.7.36"