@@ -24,14 +24,14 @@ Perform these checks before creating a release:
24242 . Check installation with autotools:
2525``` shell
2626dir=$( mktemp -d)
27- ./autogen.sh && ./configure --prefix=$dir && make clean && make install && ls -l $dir /include $dir /lib
27+ ./autogen.sh && ./configure --prefix=$dir && make clean && make install && ls -RlAh $dir
2828gcc -o ecdsa examples/ecdsa.c $( PKG_CONFIG_PATH=$dir /lib/pkgconfig pkg-config --cflags --libs libsecp256k1) -Wl,-rpath," $dir /lib" && ./ecdsa
2929```
30303 . Check installation with CMake:
3131``` shell
3232dir=$( mktemp -d)
3333build=$( mktemp -d)
34- cmake -B $build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build $build --target install && ls -l $dir /include $dir /lib *
34+ cmake -B $build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build $build --target install && ls -RlAh $dir
3535gcc -o ecdsa examples/ecdsa.c -I $dir /include -L $dir /lib* / -l secp256k1 -Wl,-rpath," $dir /lib" ,-rpath," $dir /lib64" && ./ecdsa
3636```
3737
@@ -41,7 +41,7 @@ gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib*/ -l secp256k1 -Wl,-rp
4141 * finalizes the release notes in [ CHANGELOG.md] ( ../CHANGELOG.md ) by
4242 * adding a section for the release (make sure that the version number is a link to a diff between the previous and new version),
4343 * removing the ` [Unreleased] ` section header, and
44- * including an entry for ` ### ABI Compatibility ` if it doesn't exist that mentions the library soname of the release ,
44+ * including an entry for ` ### ABI Compatibility ` if it doesn't exist,
4545 * sets ` _PKG_VERSION_IS_RELEASE ` to ` true ` in ` configure.ac ` , and
4646 * if this is not a patch release
4747 * updates ` _PKG_VERSION_* ` and ` _LIB_VERSION_* ` in ` configure.ac ` and
0 commit comments