Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Remove broken automation.

...

  • Perform an git clone and switch to the correct branch
  • Edit "build.properties.default" and change the line version.suffix=-dev to version.suffix=

    • This can be done with sed -i.bak "/^version.suffix=/d" build.properties.default
  • Edit "webapps/docs/changelog.xml" and remove rtext="in development" from the latest version
    • This can be done with xsltproc --param asfid '[your asf id]' release.xsl webapps\docs\changelog.xml > changelog-new.xml && move /Y changelog-new.xml webapps\docs\changelog.xml  where release.xsl can be found here. (Unfortunately, XSLT ends up removing the DTD-style markup from the file, so it can't be used, yet).
    • Remember that notepad.exe will remove UTF-8 Byte-Order Marks (BOMs). Use write.exe instead.
  • Commit these changes
    • git commit -a -m "Tag 9.0.94"
    • git tag 9.0.94
    • git push origin 9.0.94
  • Check the diff mailed to the dev list
  • Reset to the 9.0.x branch

...