1# Releasing 2 31. Run `release.sh` script which updates versions in go.mod files and pushes a new branch to GitHub: 4 5```shell 6TAG=v1.0.0 ./scripts/release.sh 7``` 8 92. Open a pull request and wait for the build to finish. 10 113. Merge the pull request and run `tag.sh` to create tags for packages: 12 13```shell 14TAG=v1.0.0 ./scripts/tag.sh 15```