File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,21 +61,28 @@ Version |release|
6161Release Date: Not Released
6262' user_guide_src/source/changelog.rst
6363
64- #---------------------------------------------------
65- # Merge away
66- echo -e "${BOLD}Setup the develop branch${NORMAL}"
6764git add .
6865git commit -S -m "Post ${branch} cleanup"
66+
67+ #---------------------------------------------------
68+ # Cleanup master
69+ echo -e "${BOLD}Cleanup the master branch${NORMAL}"
70+ git checkout master
71+ git merge ${branch}
6972git push origin master
70- git push UPSTREAM master
73+ # git push UPSTREAM master
7174
75+ #---------------------------------------------------
76+ # Cleanup develop
77+ echo -e "${BOLD}Cleanup the develop branch${NORMAL}"
7278git checkout develop
7379git merge ${branch}
7480git push origin develop
75- git push UPSTREAM develop
81+ # git push UPSTREAM develop
7682
7783# keep or delete the release branch? up to you
78- #git branch -d $branch
84+ # at this point, you should have uptodate develop and master,
85+ # as well as the release and post-release branches
7986
8087#---------------------------------------------------
8188# Phew!
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ echo -e "${BOLD}Generate the user guide${NORMAL}"
8383cd user_guide_src
8484
8585# make the UG & embed it in the project root
86+ rm -rf build/*
8687make html
8788rm -Rf ../docs
8889mv build/html ../docs
113114git add .
114115git commit -m "Release ${version}${qualifier}"
115116
116-
117117#---------------------------------------------------
118118# Done for now
119119echo -e "${BOLD}Your $branch branch is ready to inspect.${NORMAL}"
Original file line number Diff line number Diff line change @@ -91,4 +91,4 @@ Complete the next few steps of the release manually:
9191Once the release branch has been vetted, and you have
9292completed the manual steps, clean up with:
9393
94- `admin/post_release`
94+ `admin/post_release version [qualifier] `
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Change Log
33##########
44
55Version |release |
6- =================
6+ =================================
77
88Release Date: Not Released
99
You can’t perform that action at this time.
0 commit comments