Skip to content

Commit bffd590

Browse files
committed
Switch version bumps from 2.24.1 to 2.25.0
1 parent e54dd2d commit bffd590

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

log4j-api/src/main/java/org/apache/logging/log4j/simple/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Providers are able to be loaded at runtime.
2121
*/
2222
@Export
23-
@Version("2.24.1")
23+
@Version("2.25.0")
2424
package org.apache.logging.log4j.simple;
2525

2626
import org.osgi.annotation.bundle.Export;

log4j-api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ private static MessageFactory2 adaptMessageFactory(final MessageFactory result)
166166
*
167167
* @param logger The logger to check
168168
* @param messageFactory The message factory to check.
169-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
169+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
170170
* Instead, in {@link LoggerContext#getLogger(String, MessageFactory)} implementations, namespace loggers with message factories.
171171
* If your implementation uses {@link LoggerRegistry}, you are already covered.
172172
*/

log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerRegistry.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class LoggerRegistry<T extends ExtendedLogger> {
5454
* Data structure contract for the internal storage of admitted loggers.
5555
*
5656
* @param <T> subtype of {@code ExtendedLogger}
57-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
57+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
5858
*/
5959
@Deprecated
6060
public interface MapFactory<T extends ExtendedLogger> {
@@ -70,7 +70,7 @@ public interface MapFactory<T extends ExtendedLogger> {
7070
* {@link MapFactory} implementation using {@link ConcurrentHashMap}.
7171
*
7272
* @param <T> subtype of {@code ExtendedLogger}
73-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
73+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
7474
*/
7575
@Deprecated
7676
public static class ConcurrentMapFactory<T extends ExtendedLogger> implements MapFactory<T> {
@@ -95,7 +95,7 @@ public void putIfAbsent(final Map<String, T> innerMap, final String name, final
9595
* {@link MapFactory} implementation using {@link WeakHashMap}.
9696
*
9797
* @param <T> subtype of {@code ExtendedLogger}
98-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
98+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
9999
*/
100100
@Deprecated
101101
public static class WeakMapFactory<T extends ExtendedLogger> implements MapFactory<T> {
@@ -122,7 +122,7 @@ public LoggerRegistry() {}
122122
* Constructs an instance <b>ignoring</b> the given the map factory.
123123
*
124124
* @param mapFactory a map factory
125-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
125+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
126126
*/
127127
@Deprecated
128128
public LoggerRegistry(@Nullable final MapFactory<T> mapFactory) {
@@ -138,7 +138,7 @@ public LoggerRegistry(@Nullable final MapFactory<T> mapFactory) {
138138
*
139139
* @param name a logger name
140140
* @return the logger associated with the name
141-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
141+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
142142
* Use {@link #getLogger(String, MessageFactory)} instead.
143143
*/
144144
@Deprecated
@@ -208,7 +208,7 @@ public Collection<T> getLoggers(final Collection<T> destination) {
208208
*
209209
* @param name a logger name
210210
* @return {@code true}, if the logger exists; {@code false} otherwise.
211-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
211+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
212212
* Use {@link #hasLogger(String, MessageFactory)} instead.
213213
*/
214214
@Deprecated
@@ -263,7 +263,7 @@ public boolean hasLogger(final String name, final Class<? extends MessageFactory
263263
* @param name a logger name
264264
* @param messageFactory ignored – kept for backward compatibility
265265
* @param logger a logger instance
266-
* @deprecated As of version {@code 2.24.1}, planned to be removed!
266+
* @deprecated As of version {@code 2.25.0}, planned to be removed!
267267
* Use {@link #computeIfAbsent(String, MessageFactory, BiFunction)} instead.
268268
*/
269269
@Deprecated

log4j-core/src/main/java/org/apache/logging/log4j/core/async/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Provides Asynchronous Logger classes and interfaces for low-latency logging.
1919
*/
2020
@Export
21-
@Version("2.24.1")
21+
@Version("2.25.0")
2222
package org.apache.logging.log4j.core.async;
2323

2424
import org.osgi.annotation.bundle.Export;

log4j-core/src/main/java/org/apache/logging/log4j/core/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Implementation of Log4j 2.
1919
*/
2020
@Export
21-
@Version("2.24.1")
21+
@Version("2.25.0")
2222
package org.apache.logging.log4j.core;
2323

2424
import org.osgi.annotation.bundle.Export;

log4j-taglib/src/main/java/org/apache/logging/log4j/taglib/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* @since 2.0
2121
*/
2222
@Export
23-
@Version("2.24.1")
23+
@Version("2.25.0")
2424
package org.apache.logging.log4j.taglib;
2525

2626
import org.osgi.annotation.bundle.Export;

log4j-to-jul/src/main/java/org/apache/logging/log4j/tojul/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author <a href="http://www.vorburger.ch">Michael Vorburger.ch</a> for Google
2222
*/
2323
@Export
24-
@Version("2.24.1")
24+
@Version("2.25.0")
2525
package org.apache.logging.log4j.tojul;
2626

2727
import org.osgi.annotation.bundle.Export;

log4j-to-slf4j/src/main/java/org/apache/logging/slf4j/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* SLF4J support.
1919
*/
2020
@Export
21-
@Version("2.24.1")
21+
@Version("2.25.0")
2222
package org.apache.logging.slf4j;
2323

2424
import org.osgi.annotation.bundle.Export;

0 commit comments

Comments
 (0)