Files
blis/RELEASING
Field G. Van Zee 03ecad372d Added RELEASING file.
Details:
- Added a file named 'RELEASING' that contains basic notes on how to
  create a new version/release of BLIS. This is mostly just a reminder
  to myself, but also may become useful if/when others take over
  development and administration of the project.
2018-04-17 14:16:59 -05:00

30 lines
660 B
Plaintext

Here are the steps to follow to create a new release (version) of BLIS:
1. Make sure there are no commits that have yet to be pulled into
local repository.
$ git pull
If there are any commits upstream, merge them as appropriate.
2. Verify that the code builds properly.
$ ./configure auto; make
3. Verify that the code passes BLIS and BLAS tests:
$ make check
4. Bump the version number:
$ ./build/bump-version "0.3.2"
5. Push the new commits and new tag associated with the new version:
$ git push
$ git push --tag
6. Draft and send a new announcement to blis-devel.
7. Update ReleaseNotes wiki with body of announcement.