You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ha...@apache.org on 2021/07/09 19:27:42 UTC

svn commit: r1891418 - /subversion/site/staging/docs/community-guide/releasing.part.html

Author: hartmannathan
Date: Fri Jul  9 19:27:42 2021
New Revision: 1891418

URL: http://svn.apache.org/viewvc?rev=1891418&view=rev
Log:
* site/staging/docs/community-guide/releasing.part.html: 
  (#releasing-update-website): Instruct readers to generate versioned API docs
   from a tag, not a branch, because branch tips may contain additional
   changes not released and as explained by danielsh in [1] it would cause the
   docs to have incorrect SVN_VER_TAG and SVN_VER_REVISION:
   
   [1] dev@ mail message "Re: svn commit: r1891237..." on 09 Jul 2021
       https://mail-archives.apache.org/mod_mbox/subversion-dev/202107.mbox/%3c3195d65b-b8f7-4bef-bcac-24cab436d729@www.fastmail.com%3e
       https://lists.apache.org/thread.html/r6377bc3ed56bb32d73f68fa318ac22e53a62d5818ee8be7744974dea%40%3Cdev.subversion.apache.org%3E

Reported by: danielsh

Modified:
    subversion/site/staging/docs/community-guide/releasing.part.html

Modified: subversion/site/staging/docs/community-guide/releasing.part.html
URL: http://svn.apache.org/viewvc/subversion/site/staging/docs/community-guide/releasing.part.html?rev=1891418&r1=1891417&r2=1891418&view=diff
==============================================================================
--- subversion/site/staging/docs/community-guide/releasing.part.html (original)
+++ subversion/site/staging/docs/community-guide/releasing.part.html Fri Jul  9 19:27:42 2021
@@ -1335,8 +1335,8 @@ In that case:</p>
     <pre>
 VER=1.12
 DOCS_WC=~/src/svn/site/staging/docs
-BRANCH_BUILD_DIR=~/src/svn/branches/$VER.x/obj-dir
-cd $BRANCH_BUILD_DIR
+TAG_BUILD_DIR=~/src/svn/tags/$VER.x/obj-dir
+cd $TAG_BUILD_DIR
 make doc
 cp -a doc/doxygen/html $DOCS_WC/api/$VER
 cp -a doc/javadoc $DOCS_WC/javahl/$VER