Skip to content

Commit

Permalink
build: instructions on how to make a point release
Browse files Browse the repository at this point in the history
  • Loading branch information
ncw committed Sep 7, 2018
1 parent 820d2a7 commit 87d4e32
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ Making a release
* make upload_website
* make upload_github
* make startdev
* run bin/tidy-beta <previous version> to tidy old betas
* # announce with forum post, twitter post, G+ post

Early in the next release cycle update the vendored dependencies
Expand All @@ -32,3 +31,25 @@ Early in the next release cycle update the vendored dependencies
* git status
* git add new files
* git commit -a -v

Making a point release. If rclone needs a point release due to some
horrendous bug, then
* git branch v1.XX v1.XX-fixes
* git cherry-pick any fixes
* Test (see above)
* make NEW_TAG=v1.XX.1 tag
* edit docs/content/changelog.md
* make TAG=v1.43.1 doc
* git commit -a -v -m "Version v1.XX.1"
* git tag -d -v1.XX.1
* git tag -s -m "Version v1.XX.1" v1.XX.1
* git push --tags -u origin v1.XX-fixes
* make BRANCH_PATH= TAG=v1.43.1 fetch_binaries
* make TAG=v1.43.1 tarball
* make TAG=v1.43.1 sign_upload
* make TAG=v1.43.1 check_sign
* make TAG=v1.43.1 upload
* make TAG=v1.43.1 upload_website
* make TAG=v1.43.1 upload_github
* NB this overwrites the current beta so after the release, rebuild the last travis build
* Announce!

0 comments on commit 87d4e32

Please sign in to comment.