Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Bump up the version number. An example can be followed here: https://github.com/apache/incubator-mxnet/pull/6462, update https://github.com/apache/incubator-mxnet/blob/master/setup-utils/install-mxnet-osx-python.sh#L36
    More recent example - https://github.com/apache/incubator-mxnet/pull/8567
    make sure no broken/non-existing links are added to the master branch.
  2. Create a RSA GPG key of length 4096, upload it to the public server, and add it to the KEYS file (do this process once for each release lead): https://github.com/apache/incubator-mxnet/blob/master/KEYS & https://dist.apache.org/repos/dist/dev/incubator/mxnet/KEYS See more detailed instructions on creating the key here: https://www.apache.org/dev/openpgp.html#generate-key. Instructions for updating the KEYS file can be found here: https://github.com/apache/incubator-mxnet/blob/master/KEYS#L9-L13. Note that you must use apache email instead of personal email for the key. 

    Code Block
    languagebash
    titleAdding Keys
    # checkout the apache mxnet repo
    svn co https://dist.apache.org/repos/dist/dev/incubator/mxnet apache-mxnet
    cd apache-mxnet
    # update the KEYS file ...
    # commit the update
    svn commit -m “update keys file for xxx ” --username your_username --password your_passwd

...