---
tags: v3, infrastructure, docs, ops
---
# Version Bumping Notes
Refer to https://github.com/HausDAO/daohaus-monorepo/wiki/Versioning-Process-for-Deployed-npm-Packages
- Start with opening a PR for bumping up the versions
- `develop` -> `master`
- Go to master and check the latest deployment into master
- Want the last commit here to be tagged
- Looks at new commits since that point and detect the differences
- `git pull origin --tags`
- Pull latest `develop` and then in the commit message for the PR use `git tag`
- Run from the Actions
- Choose base branch as `develop`
- Runs the `version` for each package -- leverages `semver`
- We can look into why the tags occasionally don't work -- sometimes if a develop is missing a commit it won't detect the versions correctly
- Tags **do not** include the `@daohaus` namespace!
- Make sure the tags are up to date
- Make any changes to the tags and then push them up
-