Skip to content

Commit

Permalink
Fix zilog-over-slf4j module name
Browse files Browse the repository at this point in the history
  • Loading branch information
mvv committed May 22, 2020
1 parent 5066660 commit 3d94cbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ Structured logging library for [ZIO](https://zio.dev)
Add Zilog to your dependencies

```scala
libraryDependencies += "com.github.mvv.zilog" %% "zilog" % "0.1-M8"
libraryDependencies += "com.github.mvv.zilog" %% "zilog" % "0.1-M9"
```

If you plan to use custom compound structured arguments (like in the example
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -5,7 +5,7 @@ import xerial.sbt.Sonatype._
inThisBuild(
Seq(
organization := "com.github.mvv.zilog",
version := "0.1-M8", // next is M9
version := "0.1-M9", // next is M10
homepage := Some(url("https://github.com/mvv/zilog")),
scmInfo := Some(ScmInfo(url("https://github.com/mvv/zilog"), "scm:git@github.com:mvv/zilog.git")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
Expand Down Expand Up @@ -112,7 +112,7 @@ lazy val sager = (project in file("sager"))

lazy val overSlf4j = (project in file("over-slf4j"))
.settings(
name := "zilog-over-sfl4j",
name := "zilog-over-slf4j",
description := "SLF4J backend for Zilog",
libraryDependencies ++= Seq(zio % Provided, "org.slf4j" % "slf4j-api" % "1.7.30")
)
Expand Down

0 comments on commit 3d94cbc

Please sign in to comment.