ppkarwasz commented on issue #3198:
URL: 
https://github.com/apache/logging-log4j2/issues/3198#issuecomment-2481034057

   > ```
   > [ERROR] ===============================================================
   > [ERROR]   Name                                               Type       
Delta      New        Old        Suggest    
   > [ERROR]   org.apache.logging.log4j.core                      BUNDLE     
MAJOR      2.25.0.SNAPSHOT 2.24.1     -          
   > [ERROR] ===============================================================
   > ...
   > ```
   > 
   > I wonder why, The interesting part is in the context it shows that it is a 
`MINOR` , but at the bundle level, it shows `MAJOR`,
   
   I am not sure, what the delta at the bundle level means, but it is certainly 
not related to the Java public API.
   
   The build failure is probably due to the `MINOR` change in the package, 
which must be reflected in a change to the package version. Package versions 
are hardcoded in a `@Version` annotation in the apposite `package-info.java` 
file. See [Fixing API compatibility check 
failures](https://github.com/apache/logging-log4j2/blob/2.x/BUILDING.adoc#fixing-api-compatibility-check-failures)
 for more information.
   
   In this case you should bump the version number to `2.25.0`:
   
   ```java
   @Export
   @Version("2.25.0")
   package org.apache.logging.log4j.core.util;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@logging.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to