-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
release-plz.toml
71 lines (61 loc) · 1.43 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
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
67
68
69
70
71
[workspace]
dependencies_update = false
publish_timeout = "30m"
git_release_enable = false
git_tag_enable = false
[[package]]
name = "bevy_mod_scripting"
version_group = "main"
git_release_latest = true
git_release_enable = true
git_tag_enable = true
git_tag_name = "v{{ version }}"
git_release_name = "v{{ version }}"
git_release_body = """
{{ changelog }}
{% if remote.contributors %}
### Contributors
{% for contributor in remote.contributors %}
* @{{ contributor.username }}
{% endfor %}
{% endif %}
"""
changelog_include = [
"bevy_mod_scripting_lua",
"bevy_mod_scripting_common",
"bevy_mod_scripting_core",
"bevy_mod_scripting_rhai",
"bevy_mod_scripting_rune",
"bevy_script_api",
"bevy_event_priority",
"bevy_mod_scripting_lua_derive",
"bevy_mod_scripting_rhai_derive",
]
[[package]]
name = "bevy_mod_scripting_lua"
publish_features = ["lua54"]
version_group = "main"
[[package]]
name = "bevy_mod_scripting_common"
version_group = "main"
[[package]]
name = "bevy_mod_scripting_core"
version_group = "main"
[[package]]
name = "bevy_mod_scripting_rhai"
version_group = "main"
[[package]]
name = "bevy_mod_scripting_rune"
version_group = "main"
[[package]]
name = "bevy_script_api"
version_group = "main"
[[package]]
name = "bevy_event_priority"
version_group = "main"
[[package]]
name = "bevy_mod_scripting_lua_derive"
version_group = "main"
[[package]]
name = "bevy_mod_scripting_rhai_derive"
version_group = "main"