Skip to content

Commit a4ea7c4

Browse files
authored
Fix crate snapshots failing to deploy due to bad version number (#172)
## What is the goal of this PR? We fixed a bug where crate snapshots would fail to deploy, due to passing in an illegal version number. ## What are the changes implemented in this PR? We've bumped `dependencies` to the latest version to get the fix in: - typedb/bazel-distribution#362 It prepends `0.0.0-` to the version number we're deploying, if it looks like a commit SHA - i.e. when it is a snapshot deployment. Without this fix, the version number we submit is a commit SHA, which, by itself, is not a valid crate version, and is rejected by repo.vaticle.com.
1 parent a86f8ff commit a4ea7c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dependencies/vaticle/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ def vaticle_dependencies():
2121
git_repository(
2222
name = "vaticle_dependencies",
2323
remote = "https://github.com/vaticle/dependencies",
24-
commit = "49de5861769ebb4b4b87438324e8a5922bf75dbe", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
24+
commit = "8f21eb407287aee1d12e074b9d7960f935bf16f9", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
2525
)

0 commit comments

Comments
 (0)