diff --git a/doc/5.x-final.md b/doc/5.x-final.md index 8b0014ca292cc9cc7273fe98896f9753511e9c52..5a9e1ac699ea9da459766022bf0bfa4d14978ad0 100644 --- a/doc/5.x-final.md +++ b/doc/5.x-final.md @@ -95,14 +95,20 @@ Services such as the `civicrm.org` download page and the in-app version check depend on a file named `versions.json`. Update this. ``` -## Find and examine the current list of releases. +## Find and examine the current list of branches. cd /var/www/latest.civicrm.org/public/ ls -la versions.json -./bin/pb release:list +./bin/pb branch:list + +## Add the new branch. Be sure to adjust versions. +./bin/pb branch:status 5.2 stable ## Add the new release. Be sure to adjust versions/dates. ./bin/pb release:add 5.2.0 --date=2018-05-03 --security=false +## If appropriate, deprecate previous branch +./bin/pb branch:status 5.1 deprecated + ## Make the change persistent. git commit versions.json git push origin master