This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch POOL_2_X
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/POOL_2_X by this push:
     new 77a42431 [POOL-430] Make 
AbandonedConfig.DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION public
77a42431 is described below

commit 77a42431a40a9e7ff315ea9e6c74d5ddf62421f0
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 10 13:16:14 2026 -0500

    [POOL-430] Make
    AbandonedConfig.DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION public
    
    Bump POM version to the next feature version: 2.14.0
---
 pom.xml                                                          | 6 +++---
 src/changes/changes.xml                                          | 3 ++-
 src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java | 2 +-
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7ec9493e..5be9af4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
     <version>94</version>
   </parent>
   <artifactId>commons-pool2</artifactId>
-  <version>2.13.2-SNAPSHOT</version>
+  <version>2.14.0-SNAPSHOT</version>
   <name>Apache Commons Pool</name>
   <inceptionYear>2001</inceptionYear>
   <description>The Apache Commons Object Pooling Library.</description>
@@ -91,8 +91,8 @@
     <commons.rc.version>RC1</commons.rc.version>
     
<checkstyle.suppress.file>${basedir}/src/conf/checkstyle-suppressions.xml</checkstyle.suppress.file>
     <!-- Java 8 -->
-    <commons.release.version>2.13.2</commons.release.version>
-    <commons.release.next>2.13.3</commons.release.next>
+    <commons.release.version>2.14.0</commons.release.version>
+    <commons.release.next>2.14.1</commons.release.next>
     <commons.release.desc>(Java 8 or above)</commons.release.desc>
     <!-- Java 7 -->
     <commons.release.2.version>2.6.2</commons.release.2.version>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 997abdda..274ddcf4 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,9 +46,10 @@ The <action> type attribute can be add,update,fix,remove.
     <title>Apache Commons Pool Release Notes</title>
   </properties>
   <body>
-    <release version="2.13.2" date="YYYY-MM-DD" description="This is a 
maintenance release. Java 8 or later is required.">
+    <release version="2.14.0" date="YYYY-MM-DD" description="This is a 
maintenance release. Java 8 or later is required.">
       <!-- FIX -->
       <!-- ADD -->
+      <action type="add" dev="ggregory" due-to="Philip Helger, Gary Gregory" 
issue="POOL-430">Make AbandonedConfig.DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION 
public.</action>
       <!-- UPDATE -->
       <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
org.apache.commons:commons-parent from 93 to 94.</action>
     </release>
diff --git a/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java 
b/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java
index 13cbd1ef..d2aa38d5 100644
--- a/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java
+++ b/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java
@@ -34,7 +34,7 @@ public class AbandonedConfig {
     /**
      * The 5 minutes Duration.
      */
-    private static final Duration DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION = 
Duration.ofMinutes(5);
+    public static final Duration DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION = 
Duration.ofMinutes(5);
 
     /**
      * Creates a new instance with values from the given instance.

Reply via email to