Replies: 1 comment
-
Thanks, I'll take it into consideration in future releases :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
It is helpful when patch releases are focused on just the fix and don't bring other changes with them. For example, the fix for
FMTLOG_BLOCK
was layered on top of other changes, like this.You could tag a dot-zero release, as you do today, but if a patch-level fix is required, you could make a branch for patches for that release. These fixes would also be cherry-picked into
main
. It would look like this:The fixes
x
andy
are cherry-picked tomain
. The patch branch never merges intomain
- it's there only to provide patch-level fixes.This would allow people take patch fixes without worrying about accompanying possibly-incompatible changes.
Beta Was this translation helpful? Give feedback.
All reactions