Skip to content

Commit b10ddd2

Browse files
committed
Merge #1416: doc: Align documented scripts with CI ones
b0f7bfe doc: Do not mention soname in CHANGELOG.md "ABI Compatibility" section (Hennadii Stepanov) bd9d98d doc: Align documented scripts with CI ones (Hennadii Stepanov) Pull request description: ACKs for top commit: sipa: ACK b0f7bfe real-or-random: ACK b0f7bfe Tree-SHA512: 99cbc065cf9610923a863bac34e607ce4f2b1fe71fc32cb96fed33203e42c914ef29924cd9eade89859f63fdd95ffb214c5a2a1066bfca9c202e85aec5f7c16e
2 parents 49be5be + b0f7bfe commit b10ddd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/release-process.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ Perform these checks before creating a release:
2424
2. Check installation with autotools:
2525
```shell
2626
dir=$(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
2828
gcc -o ecdsa examples/ecdsa.c $(PKG_CONFIG_PATH=$dir/lib/pkgconfig pkg-config --cflags --libs libsecp256k1) -Wl,-rpath,"$dir/lib" && ./ecdsa
2929
```
3030
3. Check installation with CMake:
3131
```shell
3232
dir=$(mktemp -d)
3333
build=$(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
3535
gcc -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

Comments
 (0)