This is an automated email from the ASF dual-hosted git repository.
mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-scala.git
The following commit(s) were added to refs/heads/master by this push:
new 88b5b26 log4j 2.17.1
new 7762f20 Merge pull request #11 from sullis/log4j-2.17.1
88b5b26 is described below
commit 88b5b26f53709ebece0d0cf4cafb5d76761ef98a
Author: Sean C. Sullivan <[email protected]>
AuthorDate: Thu Dec 30 18:25:34 2021 -0800
log4j 2.17.1
---
README.md | 4 ++--
project/Dependencies.scala | 2 +-
src/asciidoctor/download.adoc | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index e784b19..e72ed8c 100644
--- a/README.md
+++ b/README.md
@@ -20,8 +20,8 @@ SBT users can add the following dependencies to their
`build.sbt` file:
```scala
libraryDependencies ++= Seq(
"org.apache.logging.log4j" %% "log4j-api-scala" % "11.0",
- "org.apache.logging.log4j" % "log4j-api" % "2.17.0",
- "org.apache.logging.log4j" % "log4j-core" % "2.17.0" % Runtime
+ "org.apache.logging.log4j" % "log4j-api" % "2.17.1",
+ "org.apache.logging.log4j" % "log4j-core" % "2.17.1" % Runtime
)
```
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 6d47aa5..e88d8b6 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -26,7 +26,7 @@ object Dependencies {
def scalaReflect(version: String) =
if (version.startsWith("3")) None else Some("org.scala-lang" %
"scala-reflect" % version)
- private val log4jV = "2.17.0"
+ private val log4jV = "2.17.1"
val osgiCoreApi = "org.osgi" % "org.osgi.core" % "6.0.0" % Provided
val log4jApi = "org.apache.logging.log4j" % "log4j-api" % log4jV
val log4jApiTests = "org.apache.logging.log4j" % "log4j-api" % log4jV %
Test classifier "tests"
diff --git a/src/asciidoctor/download.adoc b/src/asciidoctor/download.adoc
index 7a60357..577dfe7 100644
--- a/src/asciidoctor/download.adoc
+++ b/src/asciidoctor/download.adoc
@@ -77,6 +77,6 @@ How to add Log4j Scala API to your project using Log4j 2:
----
libraryDependencies ++= Seq(
"org.apache.logging.log4j" %% "log4j-api-scala" % "{project-version}",
- "org.apache.logging.log4j" % "log4j-core" % "2.17.0" % Runtime
+ "org.apache.logging.log4j" % "log4j-core" % "2.17.1" % Runtime
)
----