Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: error link

...

  1. If you have not already, check out the Paimon section of the dev repository on dist.apache.org via Subversion. In a fresh directory:

    Code Block
    languagebash
    svn checkout hhttpshttps://dist.apache.org/repos/dist/dev/incubator/paimon/ --depth=immediates


  2. Make a directory for the new release:

    Code Block
    languagebash
    mkdir paimon/paimon-${RELEASE_VERSION}-rc${RC_NUM}

    Copy source distributions, hashes, and GPG signature:

    Code Block
    mv <paimon-dir>/release/* paimon/paimon-${RELEASE_VERSION}-rc${RC_NUM}


  3. Add and commit all the files.

    Code Block
    languagebash
    cd paimon 
    svn add paimon-${RELEASE_VERSION}-rc${RC_NUM}
    svn commit -m "Apache Paimon, version ${RELEASE_VERSION}, release candidate ${RC_NUM}"


  4. Verify that files are present

...