This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-text.git
commit 1c87739cbbc866c7ed0eb7fd110688070e3adcca Author: Gary Gregory <[email protected]> AuthorDate: Wed Nov 26 13:06:18 2025 +0000 Fix site XML to use version 2.0.0 XML schema --- src/changes/changes.xml | 3 ++- src/site/site.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index a0499358..c6de2b36 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -51,12 +51,13 @@ The <action> type attribute can be add,update,fix,remove. <action type="fix" dev="ggregory" due-to="Pierre Post, Sumit Bera, Alex Herbert, Gary Gregory" issue="TEXT-236">Inserting at the end of a TextStringBuilder throws a StringIndexOutOfBoundsException.</action> <action type="fix" dev="ggregory" due-to="Michael Hausegger">Fix TextStringBuilderTest.testAppendToCharBuffer() to use proper argument type #724.</action> <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT plugin console warnings.</action> + <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix site XML to use version 2.0.0 XML schema.</action> <!-- ADD --> <action type="add" dev="ggregory" due-to="Piotr P. Karwasz, Gary Gregory">Add experimental CycloneDX VEX file #683.</action> <action type="add" dev="ggregory" due-to="LorgeN, Gary Gregory" issue="TEXT-235">Add Damerau-Levenshtein distance #687.</action> <action type="add" dev="ggregory" due-to="Michael Hausegger, Gary Gregory">Add unit tests to increase coverage #719.</action> <action type="add" dev="ggregory" due-to="Michael Hausegger, Gary Gregory">Add new test for CharSequenceTranslator#with() #725.</action> - <action type="fix" dev="ggregory" due-to="Michael Hausegger">Add test assertions for SimilarityCharacterInput#equals() #727.</action> + <action type="add" dev="ggregory" due-to="Michael Hausegger">Add test assertions for SimilarityCharacterInput#equals() #727.</action> <!-- UPDATE --> <action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 85 to 93 #704, #723, #726.</action> <action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons.bytebuddy.version from 1.17.6 to 1.18.1 #696, #722.</action> diff --git a/src/site/site.xml b/src/site/site.xml index cf3fee8a..484a229c 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -15,13 +15,13 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project name="Commons Text"> - <bannerRight> - <name>Commons Text</name> - <src>/images/logo.png</src> - <href>/index.html</href> - </bannerRight> - +<site xmlns="http://maven.apache.org/SITE/2.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd" + name="Apache Commons Exec"> + <bannerRight name="Commons Exec" href="/index.html"> + <image src="/images/logo.png"/> + </bannerRight> <body> <menu name="Commons Text"> <item name="Overview" href="/index.html"/> @@ -43,4 +43,4 @@ </body> -</project> +</site>
