Browse Source

chore: change repository link

pull/24/head
Garrit Franke 3 years ago
parent
commit
a4d87c90e9
  1. 4
      CONTRIBUTING.md
  2. 4
      Cargo.toml
  3. 4
      README.md
  4. 4
      contrib/PKGBUILD
  5. 4
      docs/developers/contributing.md
  6. 4
      docs/introduction/installation.md

4
CONTRIBUTING.md

@ -8,7 +8,7 @@ If you have a question, found a potential bug or want to engage with the communi
## Fixing things and adding features
If you want to contribute to the compiler itself, the easiest way to get started is to look at the [open issues](https://github.com/garritfra/antimony/issues) of the project. Usually, this is where important todo items are jotted down and bugs are reported.
If you want to contribute to the compiler itself, the easiest way to get started is to look at the [open issues](https://github.com/antimony-lang/antimony/issues) of the project. Usually, this is where important todo items are jotted down and bugs are reported.
You could also run the tests (`cargo test`) and see if any tests are ignored. Usually, if a bug is found in the wild, a failing but ignored test is written, so that it can be further investigated later.
@ -18,6 +18,6 @@ As with all software, Antimony needs good documentation. Since Antimony is still
## Submitting your code
If you want to contribute code, please open a pull request on [GitHub](https://github.com/garritfra/antimony). There is also a [SourceHut mirror](https://sr.ht/~garritfra/antimony/), if you're trying to avoid GitHub. Feel free to send a patch to the [public mailing list](https://lists.sr.ht/~garritfra/antimony). Check out [this guide](https://slashdev.space/posts/patch-based-git-workflow) to learn about the patch based workflow.
If you want to contribute code, please open a pull request on [GitHub](https://github.com/antimony-lang/antimony). There is also a [SourceHut mirror](https://sr.ht/~garritfra/antimony/), if you're trying to avoid GitHub. Feel free to send a patch to the [public mailing list](https://lists.sr.ht/~garritfra/antimony). Check out [this guide](https://slashdev.space/posts/patch-based-git-workflow) to learn about the patch based workflow.
Before submitting the code, please make sure that it is **sufficiently documented and tested**.

4
Cargo.toml

@ -4,8 +4,8 @@ version = "0.5.0"
authors = ["Garrit Franke <garrit@slashdev.space>"]
description = "The Antimony programming language"
license = "Apache-2.0"
documentation = "https://garritfra.github.io/antimony"
repository = "https://github.com/garritfra/antimony"
documentation = "https://antimony-lang.github.io/antimony"
repository = "https://github.com/antimony-lang/antimony"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

4
README.md

@ -1,7 +1,7 @@
# The Antimony Programming language
[![](https://img.shields.io/crates/v/antimony-lang.svg)](https://crates.io/crates/antimony-lang)
![Continuous integration](https://github.com/garritfra/antimony/workflows/Continuous%20integration/badge.svg?branch=master)
![Continuous integration](https://github.com/antimony-lang/antimony/workflows/Continuous%20integration/badge.svg?branch=master)
[![docs](https://img.shields.io/badge/docs-mdBook-blue.svg)](https://garritfra.github.io/antimony/latest)
[![Chat on Matrix](https://img.shields.io/badge/chat-on%20Matrix-green)](https://matrix.to/#/#antimony:matrix.slashdev.space?via=matrix.slashdev.space)
@ -35,7 +35,7 @@ fn fib(n: int) {
## State of this project
Most algorithms should run fine, but some features may be unstable. Standard library and documentation are still incomplete. See the [open issues](https://github.com/garritfra/antimony/issues) for upcoming todos.
Most algorithms should run fine, but some features may be unstable. Standard library and documentation are still incomplete. See the [open issues](https://github.com/antimony-lang/antimony/issues) for upcoming todos.
The Antimony compiler emits JavaScript for the Node.js runtime, and a C backend is currently under development. Backends for WASM and LLVM are planned.

4
contrib/PKGBUILD

@ -4,7 +4,7 @@ pkgname="antimony-git"
pkgver=v0.4.0.r7.fe7b035
pkgrel=1
pkgdesc="The bullshit-free programming language"
url="https://github.com/garritfra/antimony"
url="https://github.com/antimony-lang/antimony"
license=("Apache")
arch=("x86_64" "pentium4" "i686")
makedepends=("git" "cargo")
@ -14,7 +14,7 @@ optdepends=(
)
provides=("antimony")
source=(
"antimony::git+https://github.com/garritfra/antimony"
"antimony::git+https://github.com/antimony-lang/antimony"
)
sha256sums=("SKIP")

4
docs/developers/contributing.md

@ -8,7 +8,7 @@ If you have a question, found a potential bug or want to engage with the communi
## Fixing things and adding features
If you want to contribute to the compiler itself, the easiest way to get started is to look at the [open issues](https://github.com/garritfra/antimony/issues) of the project. Usually, this is where important todo items are jotted down and bugs are reported.
If you want to contribute to the compiler itself, the easiest way to get started is to look at the [open issues](https://github.com/antimony-lang/antimony/issues) of the project. Usually, this is where important todo items are jotted down and bugs are reported.
You could also run the tests (`cargo test`) and see if any tests are ignored. Usually, if a bug is found in the wild, a failing but ignored test is written, so that it can be further investigated later.
@ -18,6 +18,6 @@ As with all software, Antimony needs good documentation. Since Antimony is still
## Submitting your code
If you want to contribute code, please open a pull request on [GitHub](https://github.com/garritfra/antimony). There is also a [SourceHut mirror](https://sr.ht/~garritfra/antimony/), if you're trying to avoid GitHub. Feel free to send a patch to the [public mailing list](https://lists.sr.ht/~garritfra/antimony). Check out [this guide](https://slashdev.space/posts/patch-based-git-workflow) to learn about the patch based workflow.
If you want to contribute code, please open a pull request on [GitHub](https://github.com/antimony-lang/antimony). There is also a [SourceHut mirror](https://sr.ht/~garritfra/antimony/), if you're trying to avoid GitHub. Feel free to send a patch to the [public mailing list](https://lists.sr.ht/~garritfra/antimony). Check out [this guide](https://slashdev.space/posts/patch-based-git-workflow) to learn about the patch based workflow.
Before submitting the code, please make sure that it is **sufficiently documented and tested**.

4
docs/introduction/installation.md

@ -12,7 +12,7 @@ cargo install antimony-lang
## Git
To get the current development version, you can clone the Git [repository](https://github.com/garritfra/antimony) and run the following command:
To get the current development version, you can clone the Git [repository](https://github.com/antimony-lang/antimony) and run the following command:
```sh
cargo install --path .
@ -20,7 +20,7 @@ cargo install --path .
## Docker
Antimony provides a [Docker image](https://hub.docker.com/r/garritfra/antimony). It currently only supports the x64 architecture. Please reach out if you need a ARM variant (needed for Raspberry Pi). If you don't want to wait, you can build the image yourself by running this command in the root of the project:
Antimony provides a [Docker image](https://hub.docker.com/r/antimony-lang/antimony). It currently only supports the x64 architecture. Please reach out if you need a ARM variant (needed for Raspberry Pi). If you don't want to wait, you can build the image yourself by running this command in the root of the project:
```
docker build . -t antimony

Loading…
Cancel
Save