Skip to content

Commit

Permalink
Fixup from #2657 (#2659)
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion committed May 16, 2024
1 parent 3bd4eeb commit 0d8d3e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "rules_rust",
version = "0.45.0",
version = "0.45.1",
)

bazel_dep(
Expand Down
2 changes: 1 addition & 1 deletion crate_universe/private/generate_utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def determine_repin(repository_ctx, generator, lockfile_path, config, splicing_m
# If it was determined repinning should occur but there was no
# flag indicating repinning was requested, an error is raised
# since repinning should be an explicit action
if result.stdout.strip().lower() == "repin":
if result.return_code:
fail(("\n".join([
result.stderr,
(
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version of rules_rust."""

VERSION = "0.45.0"
VERSION = "0.45.1"

0 comments on commit 0d8d3e0

Please sign in to comment.