From d24dff3e5833342c603b81d66b09255d68e5c477 Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Fri, 25 Oct 2024 06:53:30 -0500 Subject: [PATCH] Release 3.15.2 --- README.md | 6 +++--- build.sbt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5f0b47eae..f92af7400 100644 --- a/README.md +++ b/README.md @@ -26,19 +26,19 @@ For people that want to skip the explanations and see it action, this is the pla ### Dependency Configuration ```scala -libraryDependencies += "com.outr" %% "scribe" % "3.15.1" +libraryDependencies += "com.outr" %% "scribe" % "3.15.2" ``` For Cross-Platform projects (JVM, JS, and/or Native): ```scala -libraryDependencies += "com.outr" %%% "scribe" % "3.15.1" +libraryDependencies += "com.outr" %%% "scribe" % "3.15.2" ``` Or, if you want interoperability with SLF4J (to allow better interoperability with existing libraries using other loggers): ```scala -libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.15.1" +libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.15.2" ``` ### Usage diff --git a/build.sbt b/build.sbt index 86f4d02cc..b9c6d513b 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ val allScalaVersions = List(scala213, scala212, scala3) name := "scribe" ThisBuild / organization := "com.outr" -ThisBuild / version := "3.15.1" +ThisBuild / version := "3.15.2" ThisBuild / scalaVersion := scala213 ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation") ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")