Always use full, three-part version numbers.

Previously, the initial release of a new GATK version had a version
number with only one part (eg., "1.4"). This could potentially mislead
people into thinking it's the most recent revision of a release, instead
of the least recent.

Now, initial releases will have full, three-part version numbers
(eg., "1.4-0-g472fc94") like everything else.
This commit is contained in:
David Roazen 2012-01-03 10:18:45 -05:00
parent ab8d47d9a5
commit 055364d786
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@
<target name="git.describe">
<exec executable="git" outputproperty="git.describe.output" resultproperty="git.describe.exit.value" failonerror="false">
<arg line="describe" />
<arg line="describe --long" />
</exec>
<condition property="git.describe.succeeded">
<equals arg1="${git.describe.exit.value}" arg2="0" />