To create new wiki account, please join us on #znc at Libera.Chat and ask admins to create a wiki account for you. You can say thanks to spambots for this inconvenience.
HowToRelease: Difference between revisions
Jump to navigation
Jump to search
DarthGandalf (talk | contribs) |
DarthGandalf (talk | contribs) |
||
Line 16: | Line 16: | ||
# git pull!!!! | # git pull!!!! | ||
# Update version number in configure.ac and version.h | # Update version number in configure.ac and version.h | ||
#* Example: https://github.com/znc/znc/commit/c426898b3a1b899dfe8a8b2a3eeb4b18d8be1bf2 | |||
# Update <code>ChangeLog.md</code> based on [[ChangeLog/git]] | # Update <code>ChangeLog.md</code> based on [[ChangeLog/git]] | ||
# Commit ("Increase the version number to 1. | # Commit ("Increase the version number to 1.7.1") | ||
# Create tarball (make-tarball.sh 1. | # Create tarball (make-tarball.sh 1.7.1) | ||
# Tag the new version in git (Use the changelog as msg, first line is "ZNC 1. | # Tag the new version in git (Use the changelog as msg, first line is "ZNC 1.7.1") | ||
## git tag -s znc-1. | ## git tag -s znc-1.7.1 HEAD | ||
## git push --tags | ## git push --tags | ||
# Merge 1. | # Merge 1.7.1 to 1.7.x, delete branch 1.7.1 | ||
# (If minor release?) Revert changes to version.h and configure.ac | # (If minor release?) Revert changes to version.h and configure.ac | ||
#* Example: https://github.com/znc/znc/commit/bae80fd383fa9d75bcc4e891d79248363a6d1d24 | |||
# (If major release?) Bump version number to foo+1. (Commit msg: "Increase the version number to foo+1") | # (If major release?) Bump version number to foo+1. (Commit msg: "Increase the version number to foo+1") | ||
# Update the wiki | # Update the wiki | ||
Line 64: | Line 36: | ||
#* The files themselves go directly into <code>archive/</code> | #* The files themselves go directly into <code>archive/</code> | ||
#* The main dir only gets symlinks | #* The main dir only gets symlinks | ||
# Write <code>znc-1. | # Write <code>znc-1.7.1-changelog.txt</code> | ||
# Update version number on Wikipedia. | # Update version number on Wikipedia. | ||
# Update topic on freenode channel | # Update topic on freenode channel | ||
# Update cygwin package using https://github.com/znc/znc-cygwin | # Update cygwin package using https://github.com/znc/znc-cygwin | ||
# Update docker image using https://github.com/znc/znc-docker and https://github.com/docker-library/official-images | # Update docker image using https://github.com/znc/znc-docker and https://github.com/docker-library/official-images |
Revision as of 09:31, 19 January 2019
Preparation
- Check todo lists and bug trackers.
- Update Template:ZNC-Versions.
- Prepare ChangeLog/git, let everyone check it.
- Move ChangeLog/git and create that page again.
To release RC1
- Update version number in CMakeLists.txt, include/znc/version.h and configure.ac, make a new branch 1.7.1 from 1.7.x, commit with message ZNC 1.7.1-rc1. (probably version.h should mention -rc1 in VERSION_STR?)
- Modify make-tarball.sh to have DESC="-rc1" (TODO: figure it out automatically), run ./make-tarball.sh 1.7.1-rc1 without commiting that change.
- Test the tarball, publish it.
- Tag the last commit with znc-1.7.1-rc1 (but without annotated tag), push commit and tag to github.
- Set Template:ZNC-Version-Alpha to 1.7.1-rc1
Release, release, release
- Revert changes to make-tarball.sh from above
- git pull!!!!
- Update version number in configure.ac and version.h
- Update
ChangeLog.md
based on ChangeLog/git - Commit ("Increase the version number to 1.7.1")
- Create tarball (make-tarball.sh 1.7.1)
- Tag the new version in git (Use the changelog as msg, first line is "ZNC 1.7.1")
- git tag -s znc-1.7.1 HEAD
- git push --tags
- Merge 1.7.1 to 1.7.x, delete branch 1.7.1
- (If minor release?) Revert changes to version.h and configure.ac
- (If major release?) Bump version number to foo+1. (Commit msg: "Increase the version number to foo+1")
- Update the wiki
- Remove
released=no
from version header in Changelog. - Update Template:ZNC-Version.
- Clear Template:ZNC-Version-Alpha.
- Remove
- Upload the release files to znc.in/.
- Accessible as /srv/znc.in/www/htdocs/ on harpy.
- The files have to be chgrp's to user group
znc
!!! - The files themselves go directly into
archive/
- The main dir only gets symlinks
- Write
znc-1.7.1-changelog.txt
- Update version number on Wikipedia.
- Update topic on freenode channel
- Update cygwin package using https://github.com/znc/znc-cygwin
- Update docker image using https://github.com/znc/znc-docker and https://github.com/docker-library/official-images