Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.
The "Release_procedure" page has been changed by NoahSlater: http://wiki.apache.org/couchdb/Release_procedure?action=diff&rev1=106&rev2=107 = Making the Release = - * Create a signed tag, using the same key as used to signed the release, pointing to the release tree-ish and a link to the [VOTE RESULTS] message on the dev mailing list. - * Push the signed tag with 'git push origin Y.Y.Y'. + Create a signed tag: + + {{{ + git tag -u DEADBEAF Y.Y.Y <tree-ish> + }}} + + Use a tag message like this: + + {{{ + CouchDB Y.Y.Y + + Vote results: <URL> + }}} + + Use the Apache URL shortener to produce the URL: + + https://s.apache.org/ + + The URL should point to the vote results email you previously sent. + + Now, push the tag: + + {{{ + git push origin Y.Y.Y + }}} + + Now, follow these steps: + * Copy the release directory to `/www/www.apache.org/dist/couchdb` on `people.apache.org`. * Make sure that the release directory and all the files within it are owned by the `couchdb` group and are group writable. * Wait for all changes to be synced to public mirrors.
