-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcog.toml
58 lines (42 loc) · 1.44 KB
/
cog.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
tag_prefix = "v"
monorepo_version_separator = "-"
generate_mono_repository_global_tag = false
ignore_merge_commits = true
branch_whitelist = ["master", "main"]
pre_bump_hooks = ["cargo check --workspace --release"]
pre_package_bump_hooks = [
"cargo test --all-features -- --test-threads 1",
"cargo build --release",
"cargo fmt --all",
"cargo set-version --package {{package}} {{version}}",
"git add :/Cargo.lock",
]
post_bump_hooks = ["git push", "git push --tags"]
post_package_bump_hooks = ["cargo package"]
[packages.fluent-static]
path = "crates/lib"
post_bump_hooks = ["cargo publish -p fluent-static"]
[packages.fluent-static-codegen]
path = "crates/codegen"
post_bump_hooks = ["cargo publish -p fluent-static-codegen"]
[packages.fluent-static-macros]
path = "crates/macros"
post_bump_hooks = ["cargo publish -p fluent-static-macros"]
[packages.fluent-static-value]
path = "crates/value"
post_bump_hooks = ["cargo publish -p fluent-static-value"]
[packages.fluent-static-function]
path = "crates/function"
post_bump_hooks = ["cargo publish -p fluent-static-function"]
[packages.fluent-static-formatter]
path = "crates/formatter"
post_bump_hooks = ["cargo publish -p fluent-static-formatter"]
[commit_types]
bump = { changelog_title = "Dependency updates" }
[changelog]
path = "CHANGELOG.md"
remote = "github.com"
repository = "fluent-static"
owner = "zaytsev"
authors = [{ signature = "Sergey Zaytsev", username = "zaytsev" }]
[bump_profiles]