This is an automated email from the ASF dual-hosted git repository. markt-asf pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 0f4508452da8175063e2037f7f05b5e4a2bf3d6c Author: Mark Thomas <[email protected]> AuthorDate: Wed Sep 2 07:56:53 2026 +0100 Update minimum required native version due to new option setting API --- java/org/apache/catalina/core/AprLifecycleListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/org/apache/catalina/core/AprLifecycleListener.java b/java/org/apache/catalina/core/AprLifecycleListener.java index 8753346f87..2cb5c820c1 100644 --- a/java/org/apache/catalina/core/AprLifecycleListener.java +++ b/java/org/apache/catalina/core/AprLifecycleListener.java @@ -72,13 +72,13 @@ public class AprLifecycleListener implements LifecycleListener { /** Required minor version of Tomcat Native. */ protected static final int TCN_REQUIRED_MINOR = 0; /** Required patch version of Tomcat Native. */ - protected static final int TCN_REQUIRED_PATCH = 15; + protected static final int TCN_REQUIRED_PATCH = 16; /** Recommended major version of Tomcat Native. */ protected static final int TCN_RECOMMENDED_MAJOR = 2; /** Recommended minor version of Tomcat Native. */ protected static final int TCN_RECOMMENDED_MINOR = 0; /** Recommended patch version of Tomcat Native. */ - protected static final int TCN_RECOMMENDED_PV = 15; + protected static final int TCN_RECOMMENDED_PV = 16; // ---------------------------------------------- Properties --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
