Skip to content

Commit

Permalink
chore: fix versioning of bn254_blackbox_solver crate (#4638)
Browse files Browse the repository at this point in the history
# Description

## Problem\*

Resolves #4634 

## Summary\*

The ACVM crate publishing steps are failing because when
`barretenberg_blackbox_solver` was renamed to `bn254_blackbox_solver`
the release please config wasn't updated to match, resulting in the
version not being incremented on releases.

## Additional Context



## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
  • Loading branch information
TomAFrench authored Mar 26, 2024
1 parent d6f1043 commit 10f182a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ acvm = { version = "0.42.0", path = "acvm-repo/acvm" }
brillig = { version = "0.42.0", path = "acvm-repo/brillig", default-features = false }
brillig_vm = { version = "0.42.0", path = "acvm-repo/brillig_vm", default-features = false }
acvm_blackbox_solver = { version = "0.42.0", path = "acvm-repo/blackbox_solver", default-features = false }
bn254_blackbox_solver = { version = "0.39.0", path = "acvm-repo/bn254_blackbox_solver", default-features = false }
bn254_blackbox_solver = { version = "0.42.0", path = "acvm-repo/bn254_blackbox_solver", default-features = false }

# Noir compiler workspace dependencies
arena = { path = "compiler/utils/arena" }
Expand Down
2 changes: 1 addition & 1 deletion acvm-repo/bn254_blackbox_solver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bn254_blackbox_solver"
description = "Solvers for black box functions which are specific for the bn254 curve"
# x-release-please-start-version
version = "0.39.0"
version = "0.42.0"
# x-release-please-end
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
"acir_field/Cargo.toml",
"acvm/Cargo.toml",
"acvm_js/Cargo.toml",
"barretenberg_blackbox_solver/Cargo.toml",
"blackbox_solver/Cargo.toml",
"bn254_blackbox_solver/Cargo.toml",
"brillig/Cargo.toml",
"brillig_vm/Cargo.toml",
{
Expand Down

0 comments on commit 10f182a

Please sign in to comment.