-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release process: fix process for maintenance release
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ gcc -o ecdsa ecdsa.c -I $dir/include -L $dir/lib64/ -l secp256k1 | |
|
||
Note that bugfixes only need to be backported to releases for which no compatible release without the bug exists. | ||
|
||
1. If `$PATCH = 1`, create maintenance branch `$MAJOR.$MINOR`: | ||
1. If there's no maintenance branch `$MAJOR.$MINOR`, create one: | ||
``` | ||
git checkout -b $MAJOR.$MINOR v$MAJOR.$MINOR.0 | ||
git push [email protected]:bitcoin-core/secp256k1.git $MAJOR.$MINOR | ||
|