-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathknope.toml
More file actions
46 lines (38 loc) · 1.31 KB
/
knope.toml
File metadata and controls
46 lines (38 loc) · 1.31 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
# At one point, the Rust library and Python bindings were separate crates,
# but now they live together, so now they share all the same scopes.
# For a related reason, we now enforce the Rust crate and Python package
# share the same version number; it also eliminates ambiguity
# when discussing issues related to some version of the Python bindings,
# as they necessarily reference the equivalent version of the Rust crate.
#
# Note that unscoped conventional commit messages (of `feat` or `fix` type)
# will necessarily show up in the CHANGELOG for `quil-cli`.
[packages.quil-rs]
versioned_files = [
"quil-rs/Cargo.toml",
"quil-rs/pyproject.toml",
"Cargo.lock",
# Update the quil-rs version in quil-cli
{ path = "quil-cli/Cargo.toml", dependency = "quil-rs" },
]
changelog = "quil-rs/CHANGELOG.md"
scopes = ["quil-rs", "rs", "rust", "quil-py", "py", "python"]
[packages.quil-cli]
versioned_files = ["quil-cli/Cargo.toml", "Cargo.lock"]
changelog = "quil-cli/CHANGELOG.md"
scopes = ["cli", "quil-cli"]
[[workflows]]
name = "release"
[[workflows.steps]]
type = "PrepareRelease"
[[workflows.steps]]
type = "Command"
command = "git commit -m \"chore: prepare release [skip ci]\""
[[workflows.steps]]
type = "Command"
command = "git push"
[[workflows.steps]]
type = "Release"
[github]
owner = "rigetti"
repo = "quil-rs"