Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bitcoin-core/secp256k1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 74826e857bfe56511a72371a62187947676ef877
Choose a base ref
..
head repository: bitcoin-core/secp256k1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7b43ed720d4a1e37ae21181855f17fff20e394ed
Choose a head ref
Showing with 5 additions and 5 deletions.
  1. +5 −5 doc/release-process.md
10 changes: 5 additions & 5 deletions doc/release-process.md
Original file line number Diff line number Diff line change
@@ -25,13 +25,13 @@ make distcheck
```shell
dir=$(mktemp -d)
./configure --prefix=$dir && make install && ls -l $dir/include $dir/lib
gcc -o ecdsa ecdsa.c -I $dir/include -L $dir/lib64/ -l secp256k1
gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib/ -l secp256k1 && ./ecdsa
```
3. Check installation with CMake:
```
```shell
dir=$(mktemp -d)
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=$dir .. && make install && ls -l $dir/include $dir/lib64
gcc -o ecdsa ecdsa.c -I $dir/include -L $dir/lib64/ -l secp256k1
mkdir build && cmake -B build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build build --target install && ls -l $dir/include $dir/lib*
gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib*/ -l secp256k1 && ./ecdsa
```

## Regular release
@@ -61,7 +61,7 @@ Note that bugfixes only need to be backported to releases for which no compatibl

1. If there's no maintenance branch `$MAJOR.$MINOR`, create one:
```
git checkout -b $MAJOR.$MINOR v$MAJOR.$MINOR.0
git checkout -b $MAJOR.$MINOR v$MAJOR.$MINOR.$((PATCH - 1))
git push git@github.com:bitcoin-core/secp256k1.git $MAJOR.$MINOR
```
2. Open a pull request to the `$MAJOR.$MINOR` branch that