-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrelease-plz.toml
40 lines (31 loc) · 1.02 KB
/
release-plz.toml
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
# Automatic changelog generation for rust projects
[workspace]
# Disable processing the packages by default
release = false
# Open the release PR as a draft
pr_draft = true
# Use a custom git-cliff configuration
changelog_config = "cliff.toml"
# Enforce adding the project name in the git tag, to avoid collisions with python.
# (This would normally only be enabled once there are multiple packages in the workspace)
git_tag_name = "{{ package }}-v{{ version }}"
git_release_name = "{{ package }}: v{{ version }}"
# Only create releases / push to crates.io after merging a release-please PR.
# This lets merge new crates to `main` without worrying about accidentally creating
# github releases.
#
# To trigger a release manually, merge a PR from a branch starting with `release-plz-`.
release_always = false
[[package]]
name = "hugr"
changelog_include = ["hugr-core", "hugr-passes"]
release = true
[[package]]
name = "hugr-core"
release = true
[[package]]
name = "hugr-passes"
release = true
[[package]]
name = "hugr-cli"
release = true