Skip to content

Commit

Permalink
fix: Update versioning in nix files when a release is made (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray authored Jun 21, 2023
1 parent 709a29c commit 1b3ff93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ jobs:
extra-files: |
cpp/CMakeLists.txt
VERSION
barretenberg.nix
barretenberg-wasm.nix
2 changes: 1 addition & 1 deletion barretenberg-wasm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ in
stdenv.mkDerivation
{
pname = "barretenberg.wasm";
version = "0.1.0";
version = "0.1.0"; # x-release-please-version

src = ./cpp;

Expand Down
2 changes: 1 addition & 1 deletion barretenberg.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ in
buildEnv.mkDerivation
{
pname = "libbarretenberg";
version = "0.1.0";
version = "0.1.0"; # x-release-please-version

src = ./cpp;

Expand Down

0 comments on commit 1b3ff93

Please sign in to comment.