Skip to content

Commit 9edfa28

Browse files
committed
Update default branch to main
1 parent 8611261 commit 9edfa28

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
exit 1;
2020
elif ! grep -q "$AUTHOR" NOTICE || false; then
2121
printf "\nAuthor '$AUTHOR' does not appear to be listed in the NOTICE file, yet.\n" &&
22-
printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/master/CONTRIBUTING.md\n" &&
22+
printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md\n" &&
2323
exit 1;
2424
else
2525
printf "\nOK: Author is present in the NOTICE file.\n";
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
if git --no-pager diff --name-only $(git rev-parse origin/${{ github.base_ref }})...${{ github.sha }} | grep -q "^dist/"; then
3131
printf "\nThe pull request modifies distribution files, but it shouldn't.\n" &&
32-
printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/master/CONTRIBUTING.md\n" &&
32+
printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md\n" &&
3333
exit 1;
3434
else
3535
printf "\nOK: Distributions files have not been modified.\n";

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Bugs and enhancement suggestions are tracked as GitHub issues.
1515

1616
#### How Do I Submit A (Good) Bug Report?
1717

18-
After you've determined which repository your bug is related to and that the issue is still present in the latest version of the master branch, create an issue on that repository and provide the following information:
18+
After you've determined which repository your bug is related to and that the issue is still present in the latest version of the main branch, create an issue on that repository and provide the following information:
1919

2020
* Use a **clear and descriptive title** for the issue to identify the problem.
2121
* Explain which **behavior you expected** to see instead and why.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
</p>
44

55
<p align="center">
6-
<a href="https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3ATest"><img src="https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Test/master?label=test&logo=github" alt="Test status" /></a>
7-
<a href="https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3APublish"><img src="https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Publish/master?label=publish&logo=github" alt="Publish status" /></a>
6+
<a href="https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3ATest"><img src="https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Test/main?label=test&logo=github" alt="Test status" /></a>
7+
<a href="https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3APublish"><img src="https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Publish/main?label=publish&logo=github" alt="Publish status" /></a>
88
<a href="https://www.npmjs.com/package/assemblyscript"><img src="https://img.shields.io/npm/v/assemblyscript.svg?label=compiler&color=007acc&logo=npm" alt="npm compiler version" /></a>
99
<a href="https://www.npmjs.com/package/@assemblyscript/loader"><img src="https://img.shields.io/npm/v/@assemblyscript/loader.svg?label=loader&color=007acc&logo=npm" alt="npm loader version" /></a>
1010
<a href="https://discord.gg/assemblyscript"><img src="https://img.shields.io/discord/721472913886281818.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2" alt="Discord online" /></a>

lib/sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Exports
1818

1919
* **asc**<br />
2020
AssemblyScript compiler frontend that one will interact with
21-
([see](https://github.com/AssemblyScript/assemblyscript/tree/master/cli)).
21+
([see](https://github.com/AssemblyScript/assemblyscript/tree/main/cli)).
2222

2323
Example usage
2424
-------------
@@ -35,4 +35,4 @@ require(
3535
);
3636
```
3737

38-
There is also the [SDK example](https://github.com/AssemblyScript/examples/tree/master/sdk) showing how to compile some actual code.
38+
There is also the [SDK example](https://github.com/AssemblyScript/examples/tree/main/sdk) showing how to compile some actual code.

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Portable compiler sources that compile to both JavaScript using `tsc` and WebAss
66
Architecture
77
------------
88

9-
![](https://raw.githubusercontent.com/AssemblyScript/assemblyscript/master/media/architecture.svg)
9+
![](https://raw.githubusercontent.com/AssemblyScript/assemblyscript/main/media/architecture.svg)
1010

1111
Usage
1212
-----

src/glue/binaryen.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* tsc uses the .js file next to it, while asc makes it a Wasm import.
55
*
6-
* See: https://github.com/WebAssembly/binaryen/blob/master/src/binaryen-c.h
6+
* See: https://github.com/WebAssembly/binaryen/blob/main/src/binaryen-c.h
77
*
88
* @license Apache-2.0
99
*/

std/assembly/bindings/wasi_snapshot_preview1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Phase: wasi_snapshot_preview1
2-
// See: https://github.com/WebAssembly/WASI/tree/master/phases/snapshot/witx
2+
// See: https://github.com/WebAssembly/WASI/tree/main/phases/snapshot/witx
33

44
// helper types to be more explicit
55
type char = u8;

std/assembly/bindings/wasi_unstable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Phase: wasi_unstable / wasi_snapshot_preview0
2-
// See: https://github.com/WebAssembly/WASI/tree/master/phases/old/snapshot_0/witx
2+
// See: https://github.com/WebAssembly/WASI/tree/main/phases/old/snapshot_0/witx
33

44
// helper types to be more explicit
55
type char = u8;

0 commit comments

Comments
 (0)