- Switch branches to 2.x
- Merge in commits/branches for the release
- Update version.json and commit with "Release {version}"
- Wait for tests to pass in CI
Next, do the release:
git tag -a v2.0.4 -m "Release 2.0.4"
git push origin v2.0.4
msbuild /p:Configuration=Release /p:PublicRelease=true
rm -r packages
for f in packages/Release/*; do nuget push $f; done