From 1159a75244f610fe25e8c1bec378a5725d11a6b3 Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Sun, 21 Aug 2022 14:25:51 -0400 Subject: [PATCH] Release 3.10.3 --- README.md | 6 +++--- build.sbt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9e96386a9..6605b7d4f 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.10.2" +libraryDependencies += "com.outr" %% "scribe" % "3.10.3" ``` For Cross-Platform projects (JVM, JS, and/or Native): ```scala -libraryDependencies += "com.outr" %%% "scribe" % "3.10.2" +libraryDependencies += "com.outr" %%% "scribe" % "3.10.3" ``` Or, if you want interoperability with SLF4J (to allow better interoperability with existing libraries using other loggers): ```scala -libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.10.2" +libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.10.3" ``` ### Usage diff --git a/build.sbt b/build.sbt index d211889a8..4ed1645d0 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ val scalaNativeVersions = scalaNot211Versions name := "scribe" ThisBuild / organization := "com.outr" -ThisBuild / version := "3.10.3-SNAPSHOT" +ThisBuild / version := "3.10.3" ThisBuild / scalaVersion := scala213 ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation") ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")