diff --git a/README.md b/README.md index 08a0ef504..bb0e07f60 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.14.0" +libraryDependencies += "com.outr" %% "scribe" % "3.15.0" ``` For Cross-Platform projects (JVM, JS, and/or Native): ```scala -libraryDependencies += "com.outr" %%% "scribe" % "3.14.0" +libraryDependencies += "com.outr" %%% "scribe" % "3.15.0" ``` Or, if you want interoperability with SLF4J (to allow better interoperability with existing libraries using other loggers): ```scala -libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.14.0" +libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.15.0" ``` ### Usage diff --git a/build.sbt b/build.sbt index fbcc6b496..611ad6276 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.14.0" +ThisBuild / version := "3.15.0" ThisBuild / scalaVersion := scala213 ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation") ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")