Skip to content

Commit

Permalink
doc: Add ABI checking with check-abi.sh to the Release Process
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Jul 21, 2023
1 parent ae92cc7 commit 9d4365c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doc/release-process.md
Expand Up @@ -46,6 +46,13 @@ gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib*/ -l secp256k1 -Wl,-rp
* if this is not a patch release
* updates `_PKG_VERSION_*` and `_LIB_VERSION_*` in `configure.ac` and
* updates `project(libsecp256k1 VERSION ...)` and `${PROJECT_NAME}_LIB_VERSION_*` in `CMakeLists.txt`.

ABI Compatibility must be checked with the [`check-abi.sh`](/tools/check-abi.sh) tool (installing packages `abi-dumper` and
`abi-compliance-checker` might be required):
```shell
tools/check-abi.sh $(git describe --abbrev=0) master
```

2. After the PR is merged, tag the commit and push it:
```
RELEASE_COMMIT=<merge commit of step 1>
Expand Down

0 comments on commit 9d4365c

Please sign in to comment.