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 6dc8754 Prepare for 12.0 release
6dc8754 is described below
commit 6dc8754af248666e50964300ffb1fe31add38b72
Author: Matt Sicker <[email protected]>
AuthorDate: Mon Jan 3 15:43:28 2022 -0600
Prepare for 12.0 release
As 12.0 was never released previously, using 13.0 is a bit premature.
---
NOTICE.txt | 2 +-
README.md | 6 +++---
src/asciidoctor/changes.adoc | 8 +-------
version.sbt | 2 +-
4 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/NOTICE.txt b/NOTICE.txt
index 4441e44..1824969 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
Apache Log4j Scala API
-Copyright 2016-2018 Apache Software Foundation
+Copyright 2016-2022 Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/README.md b/README.md
index e72ed8c..7f21adb 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# [Apache Log4j 2 Scala API](http://logging.apache.org/log4j/2.x/)
Log4j Scala API is a Scala logging facade based on Log4j 2. This supports
-Scala 2.10, and 2.11 on Java 7 at minimum, and Scala 2.12 on Java 8 at
minimum.
+Scala 2.10, and 2.11 on Java 7 at minimum, and Scala 2.12 and 3.0 on Java 8 at
minimum.
Log4j Scala API provides Log4j 2 as its default logging implementation, but
this is not strictly
required (e.g., this API can also be used with Logback or other Log4j 2 API
provider implementations). Idiomatic Scala features are provided as an
@@ -19,7 +19,7 @@ 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-scala" % "12.0",
"org.apache.logging.log4j" % "log4j-api" % "2.17.1",
"org.apache.logging.log4j" % "log4j-core" % "2.17.1" % Runtime
)
@@ -52,7 +52,7 @@ and in the
[ScalaDocs](https://logging.apache.org/log4j/2.x/log4j-api-scala_2.11
## Requirements
Log4j Scala API requires at least Java 7 for Scala 2.10/2.11, or Java 8 for
-Scala 2.12. This also requires Log4j 2 API, but it is specified as transitive
dependencies automatically
+Scala 2.12 or 3.0. This also requires Log4j 2 API, but it is specified as
transitive dependencies automatically
if you are using SBT, Maven, Gradle, or some other similar build system. This
also requires Log4j 2 Core
(or possibly another implementation of Log4j 2 API) as a runtime dependency.
Some Log4j 2 Core features require optional
dependencies which are documented in the [Log4j 2
manual](https://logging.apache.org/log4j/2.x/manual/index.html).
diff --git a/src/asciidoctor/changes.adoc b/src/asciidoctor/changes.adoc
index bfdbfb0..0aae618 100644
--- a/src/asciidoctor/changes.adoc
+++ b/src/asciidoctor/changes.adoc
@@ -16,13 +16,6 @@
////
== ChangeLog
-=== Version 13.0
-
-[vertical]
-New Features::
-[horizontal]
-LOG4J2-3184::: Add support for Scala 3.0.
-
=== Version 12.0
[vertical]
@@ -37,6 +30,7 @@ LOG4J2-2293::: Add required license files to sbt output
artifacts.
LOG4J2-2296::: Add sbt-site plugin and website configuration.
LOG4J2-2291::: Add Jenkins pipeline for sbt build.
LOG4J2-2668::: Add support for Scala 2.13.
+LOG4J2-3184::: Add support for Scala 3.0.
[vertical]
Bug Fixes:: None.
diff --git a/version.sbt b/version.sbt
index d0df47b..b6912fa 100644
--- a/version.sbt
+++ b/version.sbt
@@ -1 +1 @@
-version in ThisBuild := "13.1-SNAPSHOT"
+version in ThisBuild := "12.0-SNAPSHOT"