Skip to content

Commit

Permalink
ci: fix cargo-release version interpolation
Browse files Browse the repository at this point in the history
Updates the package metadata for the `parameter-setup` crate,
which was recently pulled into the workspace. Without these changes,
`cargo-release` was failing to add a version number to the automatically
generated commit message.

Refs #4928, #4930.
  • Loading branch information
conorsch committed Nov 21, 2024
1 parent ad95d8c commit 9b3605d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 13 additions & 17 deletions tools/parameter-setup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
[package]
name = "penumbra-parameter-setup"
version = "0.1.0"
edition = "2021"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = false
repository = { workspace = true }
version = { workspace = true }

[dependencies]
penumbra-proof-params = { path = "../../crates/crypto/proof-params" }
penumbra-proof-setup = { path = "../../crates/crypto/proof-setup", features = [
"parallel",
] }
penumbra-dex = { path = "../../crates/core/component/dex/" }
penumbra-community-pool = { path = "../../crates/core/component/community-pool/", features = [
"component",
] }
penumbra-governance = { path = "../../crates/core/component/governance/" }
penumbra-shielded-pool = { path = "../../crates/core/component/shielded-pool/", features = [
"parallel",
] }
penumbra-stake = { path = "../../crates/core/component/stake/", features = [
"component",
] }
ark-groth16 = { workspace = true }
ark-serialize = { workspace = true }
decaf377 = { workspace = true, features = ["r1cs"] }
penumbra-community-pool = { workspace = true , features = ["component"] }
penumbra-dex = { workspace = true }
penumbra-governance = { workspace = true }
penumbra-proof-params = { workspace = true }
penumbra-proof-setup = { workspace = true, features = ["parallel"] }
penumbra-shielded-pool = { workspace = true, features = ["parallel"] }
penumbra-stake = { workspace = true, features = ["component"] }
rand_core = { workspace = true }

0 comments on commit 9b3605d

Please sign in to comment.