HADOOP-11813. releasedocmaker.py should use today's date instead of unreleased (Darrell Taylor via aw)

This commit is contained in:
Allen Wittenauer 2015-05-06 10:33:56 -07:00
parent 7a26d174af
commit f325522c14
3 changed files with 10 additions and 0 deletions

View File

@ -18,6 +18,7 @@
from glob import glob
from optparse import OptionParser
from time import gmtime, strftime
import os
import re
import sys
@ -82,6 +83,7 @@ def notableclean(str):
str=str.replace("|","\|")
str=str.replace("<","\<")
str=str.replace(">","\>")
str=str.replace("*","\*")
str=str.rstrip()
return str
@ -335,6 +337,8 @@ def main():
help="only create the master, merged project files")
parser.add_option("-i","--index", dest="index", action="store_true",
help="build an index file")
parser.add_option("-u","--usetoday", dest="usetoday", action="store_true",
help="use current date for unreleased versions")
(options, args) = parser.parse_args()
if (options.versions == None):
@ -356,6 +360,8 @@ def main():
if version in releaseVersion:
reldate=releaseVersion[version]
elif options.usetoday:
reldate=strftime("%Y-%m-%d", gmtime())
else:
reldate="Unreleased"

View File

@ -209,6 +209,9 @@ Trunk (Unreleased)
HADOOP-11857. Fix CommandFormat#commandFormat java doc annotation.
(J.Andreina via jghoman)
HADOOP-11813. releasedocmaker.py should use today's date instead of
unreleased (Darrell Taylor via aw)
BUG FIXES
HADOOP-11473. test-patch says "-1 overall" even when all checks are +1

View File

@ -929,6 +929,7 @@
<argument>--version</argument>
<argument>${project.version}</argument>
<argument>--index</argument>
<argument>--usetoday</argument>
</arguments>
</configuration>
</execution>