Skip to content

Commit b46a0d1

Browse files
committed
Rename 'ZenVoich/mops' repository to 'dfinity/mops'
1 parent 70cf479 commit b46a0d1

15 files changed

Lines changed: 26 additions & 21 deletions

File tree

.github/workflows/setup-mops.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: mops test with ZenVoich/setup-mops
1+
name: mops test with dfinity/setup-mops
22

33
on:
44
push:
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12-
name: Test with ZenVoich/setup-mops
12+
name: Test with dfinity/setup-mops
1313

1414
steps:
1515
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

backend/main/verifyPackageRepository.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module {
1818
};
1919

2020
if (not Text.startsWith(repositoryUrl, #text("https://github.com/"))) {
21-
return #err("Currently only github repositories are supported.\nPlease create an issue at https://github.com/ZenVoich/mops/issues if you want to add support for other repositories.");
21+
return #err("Currently only github repositories are supported.\nPlease create an issue at https://github.com/dfinity/mops/issues if you want to add support for other repositories.");
2222
};
2323

2424
let urlPath = Iter.toArray(Text.split(repositoryUrl, #text("https://github.com/")))[1];

blog/blog/2024-07-30/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ Added a common nav bar to all subdomains for easier navigation.
4545

4646
(by [@ZenVoich](https://github.com/ZenVoich))
4747

48-
New version `1.3.1` of [`setup-mops`](https://github.com/ZenVoich/setup-mops) action is released.
48+
New version `1.3.1` of [`setup-mops`](https://github.com/dfinity/setup-mops) action is released.
4949

5050
The action is updated to use the on-chain storage to install Mops, which gave a **2x** speedup to the installation process (from ~20s to ~10s).
5151

5252
If you are using the action in this way:
5353

5454
```yaml
55-
- uses: ZenVoich/setup-mops@v1
55+
- uses: dfinity/setup-mops@v1
5656
```
5757
5858
no changes are required from your side.

blog/blog/2024-09-13/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Now you can search packages by the owner principal id. Just click on the owner p
5050

5151
## GitHub Action update
5252

53-
New version `1.4.0` of [`setup-mops`](https://github.com/ZenVoich/setup-mops) action is released.
53+
New version `1.4.0` of [`setup-mops`](https://github.com/dfinity/setup-mops) action is released.
5454

5555
- Add caching for macOS
5656
- Use node v22
@@ -66,7 +66,7 @@ docker build . --build-arg COMMIT_HASH=<commit_hash> --build-arg MOPS_VERSION=<m
6666
docker run --rm --env SHASUM=<build_hash> mops
6767
```
6868

69-
[Documentation](https://github.com/ZenVoich/mops/blob/main/cli/DEVELOPMENT.md#verify-build).
69+
[Documentation](https://github.com/dfinity/mops/blob/main/cli/DEVELOPMENT.md#verify-build).
7070

7171

7272
## Package Registry site updates

blog/blog/authors.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
dfinity:
2+
name: DFINITY
3+
title: Mops Maintainer
4+
url: https://dfinity.org
5+
image_url: https://github.com/dfinity.png
16
zen:
27
name: Zen Voich
3-
title: Mops Maintainer
8+
title: Original Mops Author
49
url: https://github.com/ZenVoich
5-
image_url: https://github.com/ZenVoich.png
10+
image_url: https://github.com/ZenVoich.png

blog/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const config = {
7575
items: [
7676
{
7777
label: 'GitHub',
78-
href: 'https://github.com/ZenVoich/mops',
78+
href: 'https://github.com/dfinity/mops',
7979
},
8080
{
8181
label: 'Twitter',

cli-releases/frontend/src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<div class="meta hashes">
3030
{#if 'commitHash' in release}
3131
<div class="hash">
32-
Commit hash: <a href="https://github.com/ZenVoich/mops/commit/{release.commitHash}" target="_blank">{release.commitHash}</a>
32+
Commit hash: <a href="https://github.com/dfinity/mops/commit/{release.commitHash}" target="_blank">{release.commitHash}</a>
3333
</div>
3434
{/if}
3535
<div class="hash">Build hash: {release.hash}</div>

cli/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm publish
3333

3434
## Check reproducibility of the build
3535

36-
Check release hash of latest build for version `0.0.0` at https://github.com/ZenVoich/mops/actions/workflows/build-hash.yml
36+
Check release hash of latest build for version `0.0.0` at https://github.com/dfinity/mops/actions/workflows/build-hash.yml
3737

3838
Build locally version `0.0.0`
3939
```

cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM --platform=linux/amd64 zenvoich/mops-builder:1.1.0@sha256:9bb87e843a90f1c12
22

33
# clone repository
44
ARG COMMIT_HASH
5-
RUN git clone https://github.com/ZenVoich/mops.git
5+
RUN git clone https://github.com/dfinity/mops.git
66

77
WORKDIR /mops
88
RUN git checkout $COMMIT_HASH

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"homepage": "https://mops.one",
2121
"repository": {
2222
"type": "git",
23-
"url": "https://github.com/ZenVoich/mops.git"
23+
"url": "https://github.com/dfinity/mops.git"
2424
},
25-
"author": "Zen Voich <zen.voich@gmail.com>",
25+
"author": "DFINITY",
2626
"license": "MIT",
2727
"engines": {
2828
"node": ">=18.0.0"

0 commit comments

Comments
 (0)