Skip to content
Oliver Gorwits edited this page Sep 14, 2017 · 6 revisions
  1. Follow the Updating MIBs docs.

  2. Configure git to help you release:

    • git config --global push.followTags true (push new tags together with commits)
  3. Edit README and increment the version (e.g. X.Y).

  4. Commit this change:

    • git add README
    • git commit -m 'release X.Y'
  5. Tag it:

    • git tag -a X.Y -m 'version X.Y'
  6. Push to git:

    • git push (may need --follow-tags if you have an old version of git)
  7. Visit https://github.com/netdisco/netdisco-mibs/releases/new

  8. Select your new tag (X.Y) from the dropdown list.

  9. Enter "netdisco-mibs-X.Y" for the Release Title

  10. Click the green "Publish Release" button.

Done!

Clone this wiki locally