The next release will be 3.11.
This commit is contained in:
parent
daa4193fb2
commit
4db2896750
6
pom.xml
6
pom.xml
|
@ -26,7 +26,7 @@
|
|||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<version>3.10.1-SNAPSHOT</version>
|
||||
<version>3.11-SNAPSHOT</version>
|
||||
<name>Apache Commons Lang</name>
|
||||
|
||||
<inceptionYear>2001</inceptionYear>
|
||||
|
@ -47,7 +47,7 @@
|
|||
<connection>scm:git:http://gitbox.apache.org/repos/asf/commons-lang.git</connection>
|
||||
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-lang.git</developerConnection>
|
||||
<url>https://gitbox.apache.org/repos/asf?p=commons-lang.git</url>
|
||||
<tag>commons-lang-3.10</tag>
|
||||
<tag>commons-lang-3.11</tag>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
|
@ -584,7 +584,7 @@
|
|||
<commons.packageId>lang3</commons.packageId>
|
||||
<commons.module.name>org.apache.commons.lang3</commons.module.name>
|
||||
<!-- Current 3.x release series -->
|
||||
<commons.release.version>3.10</commons.release.version>
|
||||
<commons.release.version>3.11</commons.release.version>
|
||||
<commons.release.desc>(Java 8+)</commons.release.desc>
|
||||
<!-- Previous 2.x release series -->
|
||||
<commons.release.2.version>2.6</commons.release.2.version>
|
||||
|
|
|
@ -45,7 +45,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
</properties>
|
||||
<body>
|
||||
|
||||
<release version="3.10.1" date="2020-MM-DD" description="New features and bug fixes..">
|
||||
<release version="3.11" date="2020-MM-DD" description="New features and bug fixes..">
|
||||
<action type="fix" dev="kinow" due-to="contextshuffling">Fix Javdoc for StringUtils.appendIfMissingIgnoreCase() #507.</action>
|
||||
<action type="update" dev="ggregory">org.junit-pioneer:junit-pioneer 0.5.4 -> 0.5.6.</action>
|
||||
<action type="update" dev="ggregory">org.junit.jupiter:junit-jupiter 5.6.0 -> 5.6.1.</action>
|
||||
|
@ -57,6 +57,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action issue="LANG-1537" type="update" dev="ggregory" due-to="Isira Seneviratne, Bruno P. Kinoshita">Simplify a null check in the private replaceEach() method of StringUtils. #514.</action>
|
||||
<action issue="LANG-1534" type="update" dev="ggregory" due-to="Isira Seneviratne, Bruno P. Kinoshita">Replace some usages of the ternary operator with calls to Math.max() and Math.min() #512.</action>
|
||||
<action type="update" dev="ggregory" due-to="Arend v. Reinersdorff, Bruno P. Kinoshita">(Javadoc) Fix return tag for throwableOf*() methods #518.</action>
|
||||
<action type="add" dev="ggregory" due-to="XenoAmess, Gary Gregory">Add ArrayUtils.isSameLength() to compare more array types #430.</action>
|
||||
</release>
|
||||
|
||||
<release version="3.10" date="2020-03-22" description="New features and bug fixes. Requires Java 8, supports Java 9, 10, 11.">
|
||||
|
|
|
@ -50,7 +50,7 @@ and various <a href="project-reports.html">project reports</a> are provided.
|
|||
The Javadoc API documents are available online:
|
||||
</p>
|
||||
<ul>
|
||||
<li>The <a href="javadocs/api-3.10/index.html">current stable release 3.10</a> [Java 8 and up]</li>
|
||||
<li>The <a href="javadocs/api-3.11/index.html">current stable release 3.11</a> [Java 8 and up]</li>
|
||||
<li>The <a href="javadocs/api-2.6/index.html">legacy release 2.6</a> [Java 1.2 and up]</li>
|
||||
<li>Older releases - see the <a href="release-history.html">Release History</a> page</li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in New Issue