When we are ready to branch our code, we first need to create the branch:
- In a local clone, run
git checkout main
andgit pull origin main
to make sure you have the latestmain
- Run
git checkout -b release/1.1.0-previewX
whereX
is the YARP preview number. When releasing a non-preview version, userelease/1.1
instead ofrelease/1.1.0
so that the branch can be used for future patches. - If you are releasing a non-preview version:
- Set the
PreReleaseVersionLabel
ineng/Versions.props
tortw
. - Run
build.cmd -pack
- Verify that the packages in
artifacts/packages/Debug/Shipping
do not have a suffix after the intended version. For example the name should beYarp.ReverseProxy.1.1.0.nupkg
and notYarp.ReverseProxy.1.1.0-dev.nupkg
.
- Set the
- Run
git push origin release/1.1.0-previewX
to push the branch to the server.
Update branding in main
:
- Edit the file
eng/Versions.props
- Set
PreReleaseVersionLabel
topreview.X
(whereX
is the next preview number) - Send a PR and merge it ASAP (auto-merge is your friend).
Update the runtimes and SDKs in global.json
in main
:
Check that the global.json includes the latest 3.1 runtime versions from here, and 5.0 from here, and 6.0 SDK from here.