Skip to content

Commit c7a2580

Browse files
committed
Finish repo rename
1 parent 12fd477 commit c7a2580

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.bcr/metadata.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"homepage": "https://github.com/dzbarsky/rules_rs",
2+
"homepage": "https://github.com/hermeticbuild/rules_rs",
33
"maintainers": [
44
{
55
"name": "David Zbarsky",
66
"email": "dzbarsky@gmail.com",
77
"github": "dzbarsky"
88
}
99
],
10-
"repository": ["github:dzbarsky/rules_rs"],
10+
"repository": ["github:hermeticbuild/rules_rs"],
1111
"versions": [],
1212
"yanked_versions": {}
1313
}

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
tag_name: ${{ inputs.tag_name }}
2727
# GitHub repository which is a fork of the upstream where the Pull Request will be opened.
28-
registry_fork: dzbarsky/bazel-central-registry
28+
registry_fork: hermeticbuild/bazel-central-registry
2929
draft: false
3030
attest: true
3131
permissions:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ If you do nothing, eventually the newest commits will be released automatically
5050
This automation is defined in .github/workflows/tag.yaml.
5151

5252
Rather than wait for the cron event, you can trigger manually. Navigate to
53-
https://github.com/dzbarsky/rules_rs/actions/workflows/tag.yaml
53+
https://github.com/hermeticbuild/rules_rs/actions/workflows/tag.yaml
5454
and press the "Run workflow" button.
5555

5656
If you need control over the next release version, for example when making a release candidate for a new major,

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use_repo(
3434
name = "toml2json_" + name,
3535
executable = True,
3636
sha256 = sha256,
37-
url = "https://github.com/dzbarsky/toml2json/releases/download/v0.0.23/toml2json_" + name + ext,
37+
url = "https://github.com/hermeticbuild/toml2json/releases/download/v0.0.23/toml2json_" + name + ext,
3838
)
3939
for name, sha256, ext in [
4040
("darwin_amd64", "3fad1d4314fec5074b635ba3e5b31d578e2539137a017092bf364672a3c9676a", ""),

rs/extensions.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ def _generate_hub_and_spokes(
618618
if not select_matching_version(req, [locked_version]):
619619
fail(("ERROR: Cargo.lock out of sync: %s requires %s %s but Cargo.lock has %s.\n\n" +
620620
"If this is incorrect, please set `validate_lockfile = False` in `crate.from_cargo`\n" +
621-
"and file a bug at https://github.com/dzbarsky/rules_rs/issues/new") % (
621+
"and file a bug at https://github.com/hermeticbuild/rules_rs/issues/new") % (
622622
package["name"],
623623
dep_name,
624624
req,

rs/private/resolver.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@ def resolve(mctx, packages, feature_resolutions_by_fq_crate, cfg_attrs_by_triple
192192
dirty_package_indices = sorted(dirty_package_indices)
193193

194194
if i == _MAX_ROUNDS:
195-
fail("Resolution did not converge! This is likely a bug in rules_rs, please report it to github.com/dzbarsky/rules_rs")
195+
fail("Resolution did not converge! This is likely a bug in rules_rs, please report it to github.com/hermeticbuild/rules_rs")

0 commit comments

Comments
 (0)