diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-13 15:21:24 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-13 15:21:24 +0100 |
commit | 61ec31cde1373033179985f737b55e05cc1a2df7 (patch) | |
tree | daf194cf3790951d46521edf6a328600f6fc9c01 | |
parent | 4e917e873184a5a6eb6cb2660a437ce143be233c (diff) | |
download | rneovim-61ec31cde1373033179985f737b55e05cc1a2df7.tar.gz rneovim-61ec31cde1373033179985f737b55e05cc1a2df7.tar.bz2 rneovim-61ec31cde1373033179985f737b55e05cc1a2df7.zip |
release.sh
-rwxr-xr-x | scripts/release.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/release.sh b/scripts/release.sh index 1645a10452..fb266ad154 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -15,10 +15,6 @@ # - Tag the commit. # Create the "version bump" commit: # - CMakeLists.txt: Set NVIM_VERSION_PRERELEASE to "-dev" -# -# Manual steps: -# - CMakeLists.txt: Bump NVIM_VERSION_* as appropriate. -# - git push --follow-tags set -e set -u @@ -95,5 +91,9 @@ _do_bump_commit echo " Next steps: - Double-check NVIM_VERSION_* in CMakeLists.txt - - git push --follow-tags - - update website: index.html" + - Push the tag: + git push --follow-tags + - Empty-merge (if this is a maintenance release): + git checkout upstream/master + git merge -s ours upstream/release-x.y + - Update website: index.html" |