rclone/RELEASE.md

42 lines
1.4 KiB
Markdown
Raw Normal View History

2017-03-18 12:16:43 +01:00
Extra required software for making a release
2015-02-04 23:31:56 +01:00
* [github-release](https://github.com/aktau/github-release) for uploading packages
* pandoc for making the html and man pages
Making a release
2017-01-02 15:38:14 +01:00
* git status - make sure everything is checked in
* Check travis & appveyor builds are green
2015-09-22 19:47:16 +02:00
* make check
* make test # see integration test server or run locally
2015-02-04 23:31:56 +01:00
* make tag
2015-06-06 16:45:00 +02:00
* edit docs/content/changelog.md
* make doc
2017-01-02 16:30:34 +01:00
* git status - to check for new man pages - git add them
* git commit -a -v -m "Version v1.XX"
2015-02-04 23:31:56 +01:00
* make retag
* make release_dep
2017-01-02 15:38:14 +01:00
* # Set the GOPATH for a current stable go compiler
2015-02-04 23:31:56 +01:00
* make cross
2017-12-23 14:40:07 +01:00
* git checkout docs/content/commands # to undo date changes in commands
2015-02-04 23:31:56 +01:00
* git push --tags origin master
2017-03-18 12:16:43 +01:00
* git push --tags origin master:stable # update the stable branch for packager.io
2017-07-22 19:16:46 +02:00
* # Wait for the appveyor and travis builds to complete then fetch the windows binaries from appveyor
* make fetch_windows
* make tarball
* make sign_upload
* make check_sign
2017-07-22 19:16:46 +02:00
* make upload
* make upload_website
* make upload_github
2017-03-18 12:30:04 +01:00
* make startdev
* # announce with forum post, twitter post, G+ post
2016-12-14 18:49:26 +01:00
Early in the next release cycle update the vendored dependencies
2018-06-17 18:59:12 +02:00
* Review any pinned packages in Gopkg.toml and remove if possible
2016-12-14 18:49:26 +01:00
* make update
* git status
* git add new files
* carry forward any patches to vendor stuff
* git commit -a -v
2017-03-18 12:16:43 +01:00
Make the version number be just in a file?