Skip to content

Commit 62a188d

Browse files
committed
Check for changes to the public API
We would like to get to a stage where we can commit to the public API. To help us achieve this add a script that generates the public API and checks it against three committed files, one for each feature set: no features, alloc, std. The idea is that with this applied any PR that changes the public API should include a final patch that is just the changes to the api/*.txt files, that way reviewers can discuss the changes without even needing to look at the code, quickly giving concept ACK/NACKs. We also run the script in CI to make sure we have not accidentally changed the public API so that we can be confident that don't break semver during releases. The script can also be used to diff between two release versions to get a complete list of API changes, useful for writing release notes and for users upgrading. There is a development burden involved if we apply this patch.
1 parent 202b59f commit 62a188d

File tree

6 files changed

+2741
-0
lines changed

6 files changed

+2741
-0
lines changed

.github/workflows/rust.yml

+15
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,18 @@ jobs:
140140
run: cargo install cross --locked
141141
- name: run cross test
142142
run: cross test --target s390x-unknown-linux-gnu
143+
144+
API:
145+
name: Check for changes to the public API
146+
runs-on: ubuntu-latest
147+
strategy:
148+
fail-fast: false
149+
steps:
150+
- name: Checkout Crate
151+
uses: actions/checkout@v3
152+
- name: Checkout Toolchain
153+
uses: dtolnay/rust-toolchain@nightly
154+
- name: Install cargo-public-api
155+
run: cargo install --locked cargo-public-api
156+
- name: Running API checker script
157+
run: ./contrib/check-for-api-changes.sh

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,10 @@ Alternatively add symlinks in your `.git/hooks` directory to any of the githooks
3333

3434
We use a custom Rust compiler configuration conditional to guard the benchmark code. To run the
3535
benchmarks use: `RUSTFLAGS='--cfg=bench' cargo +nightly bench`.
36+
37+
38+
## API changes
39+
40+
All PRs that change the public API of `rust-bech32` must include a patch to the
41+
`api/` text files. For PRs that include API changes, add a separate patch to the PR
42+
that is the diff created by running `contrib/check-for-api-changes.sh`.

0 commit comments

Comments
 (0)