-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure CI/metadata for the new package
- Loading branch information
Showing
4 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
rust: | ||
- "hugr/**" | ||
- "hugr-passes/**" | ||
- "hugr-*/**" | ||
- "Cargo.toml" | ||
- "specification/schema/**" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
# 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" | ||
|
||
# Disable the changelog generation by default | ||
changelog_update = false | ||
|
||
# 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 }}" | ||
|
||
[[package]] | ||
name = "hugr" | ||
release = true | ||
|
||
[[package]] | ||
name = "hugr-core" | ||
release = true | ||
|
||
# Enable the changelog for this package | ||
changelog_update = true | ||
# Disabled until the first version is manually published | ||
publish = false | ||
github_release = false | ||
|
||
[[package]] | ||
name = "hugr-passes" | ||
|
||
# Enable the changelog for this package | ||
changelog_update = true | ||
release = true | ||
|
||
# Disabled until the first version is manually published | ||
publish = false | ||
github_release = false |