Skip to content

Commit

Permalink
chore: add release-plz config
Browse files Browse the repository at this point in the history
I wanted to use release-plz without config in this repo, but it seems like it
doesn't pay attention to `publish = "false"` when determining whether or not
there's a single public crate in the workspace.

This was leading to it not using my preferred scheme for release tags.  I'd
maybe like to fix upstream but for now it is far easier to just configure it.
  • Loading branch information
obmarg committed Apr 6, 2024
1 parent ec21a51 commit dc8903f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[workspace]
changelog_update = false
git_release_enable = false
git_tag_enable = false

[[package]]
name = "graphql-ws-client"

git_tag_name = "v{{version}}"
git_tag_enable = true
git_release_enable = true

changelog_update = true
changelog_path = "./CHANGELOG.md"

0 comments on commit dc8903f

Please sign in to comment.