1
0

Prepare for a release candidate

This commit is contained in:
Gary Gregory
2024-03-16 19:09:33 -04:00
parent adc6ef8f1b
commit b0b9b7131c
6 changed files with 134 additions and 75 deletions

View File

@@ -43,7 +43,7 @@ The <action> type attribute can be add,update,fix,remove.
<title>Release Notes</title>
</properties>
<body>
<release version="1.4.0" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
<release version="1.4.0" date="2024-03-16" description="This is a feature and maintenance release. Java 8 or later is required.">
<!-- ADD -->
<action type="add" dev="ggregory" due-to="Gary Gregory">Add Maven property project.build.outputTimestamp for build reproducibility.</action>
<!-- FIX -->

View File

@@ -60,7 +60,7 @@ $release.description.replaceAll(" ", "
#else
#set($dueto="")
#end
o $issue ${action}$dueto
* $issue ${action}$dueto
#set($action="")
#set($issue="")
#set($dueto="")
@@ -69,24 +69,31 @@ o $issue ${action}$dueto
#if ($release.getActions().size() == 0)
No changes defined in this version.
#else
Changes in this version include:
Changes in this version
-----------------------
#if ($release.getActions('add').size() !=0)
New features:
New features
------------
#foreach($actionItem in $release.getActions('add'))
#processaction()
#end
#end
#if ($release.getActions('fix').size() !=0)
Fixed Bugs:
Fixed Bugs
----------
#foreach($actionItem in $release.getActions('fix'))
#processaction()
#end
#end
#if ($release.getActions('update').size() !=0)
Changes:
Changes
-------
#foreach($actionItem in $release.getActions('update'))
#processaction()
#end
@@ -110,5 +117,4 @@ patches, or suggestions for improvement, see the ${project.name} website:
${project.url}
=============================================================================
-----------------------------------------------------------------------------