1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# release-plz configuration.
#
# Previously release-plz ran on pure defaults. This file makes the
# defaults we rely on explicit and enables a blocking API-compatibility
# check at release time.
[]
# Run cargo-semver-checks inside release-plz when computing the release
# PR. Unlike the advisory `semver` job in ci.yml (continue-on-error), this
# runs where the version bumps actually happen, so an API break that rides
# an unmarked commit blocks the release PR instead of only warning on CI.
= true
# Label the release PRs release-plz opens.
= ["release"]
# Create a GitHub Release (tag + notes) for each published version.
= true
# Lockstep versioning: the acdp crates are one library split across
# crates that must be consumed as a coherent set (shared types flow
# across crate boundaries via acdp-primitives). Independent per-crate
# versions let a fresh resolver mix release generations and mismatch
# acdp-primitives majors. Putting every member in one `version_group`
# makes release-plz assign them all the same next version — bumping the
# whole family together (even unchanged crates). The version itself lives
# once in [workspace.package] and each member inherits it. semver_check
# above still guards real API breaks.
[[]]
= "acdp"
= "acdp"
[[]]
= "acdp-primitives"
= "acdp"
[[]]
= "acdp-jcs"
= "acdp"
[[]]
= "acdp-safe-http"
= "acdp"
[[]]
= "acdp-did"
= "acdp"
[[]]
= "acdp-crypto"
= "acdp"
[[]]
= "acdp-types"
= "acdp"
[[]]
= "acdp-validation"
= "acdp"
[[]]
= "acdp-verify"
= "acdp"
[[]]
= "acdp-producer"
= "acdp"
[[]]
= "acdp-client"
= "acdp"
[[]]
= "acdp-server"
= "acdp"
[[]]
= "acdp-cli"
= "acdp"