Skip to content

Commit

Permalink
Release 3.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Apr 18, 2024
1 parent ec8d832 commit e5b38fb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.13.2"
libraryDependencies += "com.outr" %% "scribe" % "3.13.3"
```

For Cross-Platform projects (JVM, JS, and/or Native):

```scala
libraryDependencies += "com.outr" %%% "scribe" % "3.13.2"
libraryDependencies += "com.outr" %%% "scribe" % "3.13.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.13.2"
libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.13.3"
```

### Usage
Expand Down
17 changes: 10 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ val allScalaVersions = List(scala213, scala212, scala3)

name := "scribe"
ThisBuild / organization := "com.outr"
ThisBuild / version := "3.13.2"
ThisBuild / version := "3.13.3"
ThisBuild / scalaVersion := scala213
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
Expand Down Expand Up @@ -38,16 +38,16 @@ ThisBuild / parallelExecution := false
ThisBuild / outputStrategy := Some(StdoutOutput)

// Core
val perfolationVersion: String = "1.2.9"
val sourcecodeVersion: String = "0.3.1"
val collectionCompatVersion: String = "2.12.0"
val perfolationVersion: String = "1.2.10"
val sourcecodeVersion: String = "0.4.1"
val collectionCompatVersion: String = "2.11.0"
val moduloadVersion: String = "1.1.7"

val catsEffectVersion: String = "3.5.4"
val catsEffectTestingVersion: String = "1.5.0"

// JSON
val fabricVersion: String = "1.14.2"
val fabricVersion: String = "1.14.3"
val circeVersion = "0.14.6"

// Testing
Expand Down Expand Up @@ -87,7 +87,8 @@ val sourceMapSettings = List(
lazy val root = project.in(file("."))
.aggregate(
coreJS, coreJVM, coreNative,
catsJS, catsJVM, catsNative,
// TODO: Re-enable catsNative when cats-effect supports ScalaNative 0.5
catsJS, catsJVM, //catsNative,
fileJVM, fileNative,
jsonJS, jsonJVM, jsonFabricJS, jsonFabricJVM, jsonCirceJS, jsonCirceJVM,
slf4j, slf4j2, log4j, migration, config, slack, logstash
Expand Down Expand Up @@ -162,7 +163,9 @@ lazy val fileModule = crossProject(JVMPlatform, NativePlatform)
crossScalaVersions := allScalaVersions
)
.nativeSettings(
nativeLinkStubs := true,
nativeConfig ~= {
_.withLinkStubs(true)
},
test := {}
)
.dependsOn(core)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.1")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0")

Expand Down

0 comments on commit e5b38fb

Please sign in to comment.