I’m trying to understand the development flow of the Erlang/OTP project. For that I read the “Branches” section in the wiki, however, I still don’t understand the role of the maint
branch.
According to the wiki: Branches · erlang/otp Wiki · GitHub
“”"
maint
is a maintenance branch used for the upcoming minor OTP-XX.Y
releases. We only merge tested changes to the maint
branch (and simple changes that are obviously correct). You can safely base branches on the maint
branch. It will not be rewound. Typically, everything in the maintenance branch will be included in the next release.
The maintenance branch should not include any new features, the focus of this branch is bug fixes and improvements.
“”"
Can anybody clarify what this paragraph means ?