-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathrelease-plz.toml
More file actions
49 lines (36 loc) · 1.28 KB
/
release-plz.toml
File metadata and controls
49 lines (36 loc) · 1.28 KB
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
[workspace]
# path of the git-cliff configuration
changelog_config = "cliff.toml"
# enable changelog updates
changelog_update = true
# update dependencies with `cargo update`
dependencies_update = true
# Enable git releases for all packages by default
git_release_enable = true
# Enable git tags for all packages by default
git_tag_enable = true
# creates the git release as draft
git_release_draft = true
# If true, creates the release PR as a draft.
pr_draft = true
# labels for the release PR
pr_labels = ["release"]
# disallow updating repositories with uncommitted changes
allow_dirty = false
# disallow packaging with uncommitted changes
publish_allow_dirty = false
[[package]] # the double square brackets define a TOML table array
name = "evm_rpc"
semver_check = false # disable API breaking changes checks
publish = false # disable `cargo publish`
[[package]] # the double square brackets define a TOML table array
name = "evm_rpc_client"
#git_release_enable = false # enable GitHub releases
publish = true # enable `cargo publish`
[[package]] # the double square brackets define a TOML table array
name = "evm_rpc_types"
#git_release_enable = false # enable GitHub releases
publish = true # enable `cargo publish`
[[package]]
name = "e2e"
release = false # don't process this package