diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2019-02-04 13:17:38 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2019-02-04 13:17:38 +0100 |
commit | ea17cf89d7680e1ceb19f80d3a6401cb07d1ee4f (patch) | |
tree | 5b5b623b3b51346b32711f24010fb1fd1e33f6ac /Etc/creating-a-release.txt | |
parent | 14d262602341f1a2d69aa9149a331d047851ef55 (diff) | |
parent | 8b89d0d57710d044e85591aac25952f5a6ae84c7 (diff) | |
download | zsh-ea17cf89d7680e1ceb19f80d3a6401cb07d1ee4f.tar.gz zsh-ea17cf89d7680e1ceb19f80d3a6401cb07d1ee4f.zip |
New upstream bugfix release 5.7.1
Merge branch 'upstream' at 'zsh-5.7.1' into 'debian'.
Diffstat (limited to 'Etc/creating-a-release.txt')
-rw-r--r-- | Etc/creating-a-release.txt | 44 |
1 files changed, 42 insertions, 2 deletions
diff --git a/Etc/creating-a-release.txt b/Etc/creating-a-release.txt index fd52da86a..dfde269ae 100644 --- a/Etc/creating-a-release.txt +++ b/Etc/creating-a-release.txt @@ -17,7 +17,7 @@ To create a zsh release: - Commit those changes with an "unposted" ChangeLog entry. - git commit -am "Test release: 5.5.1-test-1." && + git commit -am "Test release: 5.5.1-test-1." && zshdev-add-nnnnn-and-changelog unposted # (Everyone has a different way of getting the "unposted" magic string # into ChangeLog and the log message. This script is how I do it; YMMV; @@ -38,6 +38,7 @@ To create a zsh release: git checkout zsh-5.5.1-test-1 git diff HEAD # ensure no local mods + rm -f Doc/help.txt Doc/help/[_a-zA-Z0-9]* # some devs have had issues with these Util/preconfig && ./configure ... make -C Etc make -C Doc everything @@ -55,7 +56,46 @@ To create a zsh release: Stable releases to zsh/ and zsh-doc/. After uploading, select the tar.xz artifact, press the 🛈 button ("View Details") to its right, and press [Select All] next to "Default Download For:". This should cause sf.net to offer that artifact in the "Looking for the latest version?" line. -- Upload to zsh.org +- If the new release is a stable release, update zsh.sf.net: + + # Move into the 'web' repository mentioned above + cd /path/to/web/repo + git pull + + # Review the README, in case there is any new information there + cat README + + # Run release.zsh to update the documentation from the main repository + # (making sure you still have checked out the tag you created!) + ZSHPATH=/path/to/zsh/repo ./release.zsh + + # Commit changes + git commit -am 'Doc, FAQ, Intro: Update for <version>' # replace <version> + + # Update the files mentioned in the release.zsh instructions (just + # adhere to the existing structure/format) + $EDITOR index.html + $EDITOR News/index.html + $EDITOR releases.html + + # Run release-update-versions.zsh to update the names and sizes of the + # files listed on the documentation index and source page + ./release-update-versions.zsh <version> # replace <version> + + # Commit changes + git commit -am 'Update downloads, notes, etc., for <version>' # replace <version> + + # Tag and push changes + git tag -sm 'Release of zsh <version>' zsh-<version> # replace <version> + git push + + # Post changes; see web/README for the full rsync command. When in + # doubt, use `rsync -n` to perform a dry run. Note that changes may take + # several minutes to appear afterwards + rsync ... + +- Upload the build artefacts to zsh.org/pub; you may need assistance from + another dev if you don't have access to do this. - Post to -workers@ |