chore: clean some links up so they point to the new repo
This commit is contained in:
parent
1055e342b1
commit
841babae5c
|
@ -84,7 +84,7 @@ N/A
|
|||
|
||||
### Changed
|
||||
|
||||
- **aiken**: Project structure is now a bit different. See [examples/sample](https://github.com/txpipe/aiken/tree/main/examples/sample) for more
|
||||
- **aiken**: Project structure is now a bit different. See [examples/sample](https://github.com/aiken-lang/aiken/tree/main/examples/sample) for more
|
||||
|
||||
## [v0.0.21] - 2022-10-23
|
||||
|
||||
|
|
|
@ -11,14 +11,14 @@
|
|||
2. **Documentation**
|
||||
|
||||
Any updates, typo fixes, or expansion of the documention is more than welcome. At the moment,
|
||||
we are using [mdBook](https://github.com/rust-lang/mdBook) to run https://txpipe.github.io/aiken.
|
||||
we are using [nextra](https://nextra.site) to run https://github.com/aiken-lang/site.
|
||||
That can be considered user level documentation but that is not strict. There is also doc comments in the Rust code, which can be considered strictly developer level documentation.
|
||||
|
||||
3. **Code**
|
||||
|
||||
**Getting started**
|
||||
|
||||
- `git clone git@github.com:txpipe/aiken.git`
|
||||
- `git clone git@github.com:aiken-lang/aiken.git`
|
||||
- `cd aiken`
|
||||
- `cargo test`
|
||||
- `cargo run -- help`
|
||||
|
@ -81,11 +81,11 @@
|
|||
|
||||
### :bug: How To Report A Bug
|
||||
|
||||
Open a [Bug Issue](https://github.com/txpipe/aiken/issues/new?template=bug.md).
|
||||
Open a [Bug Issue](https://github.com/aiken-lang/aiken/issues/new?template=bug.md).
|
||||
|
||||
### :bulb: How To Propose An Idea
|
||||
|
||||
Feel free to bring any idea as a [discussion [category: idea]](https://github.com/txpipe/aiken/discussions/new?category=ideas). Make sure to highlight your use case so we can understand the design space and agree on a solution.
|
||||
Feel free to bring any idea as a [discussion [category: idea]](https://github.com/aiken-lang/aiken/discussions/new?category=ideas). Make sure to highlight your use case so we can understand the design space and agree on a solution.
|
||||
|
||||
> **Note** Ideally, follow this simple template:
|
||||
>
|
||||
|
@ -95,7 +95,7 @@ Feel free to bring any idea as a [discussion [category: idea]](https://github.co
|
|||
|
||||
### :question: How To Ask a Question
|
||||
|
||||
Open a [Q&A Discussion](https://github.com/txpipe/aiken/discussions/new?category=q-a).
|
||||
Open a [Q&A Discussion](https://github.com/aiken-lang/aiken/discussions/new?category=q-a).
|
||||
|
||||
> Make sure to mark your question as _Answered_ once resolved!
|
||||
|
||||
|
|
15
README.md
15
README.md
|
@ -1,12 +1,12 @@
|
|||
<div align="center">
|
||||
<img src="https://raw.githubusercontent.com/txpipe/aiken/main/assets/logo-light.png?sanitize=true#gh-dark-mode-only" alt="Aiken" max-height="240" />
|
||||
<img src="https://raw.githubusercontent.com/txpipe/aiken/main/assets/logo-dark.png?sanitize=true#gh-light-mode-only" alt="Aiken" max-height="240" />
|
||||
<img src="https://raw.githubusercontent.com/aiken-lang/branding/main/assets/logo-light.png?sanitize=true#gh-dark-mode-only" alt="Aiken" max-height="240" />
|
||||
<img src="https://raw.githubusercontent.com/aiken-lang/branding/main/assets/logo-dark.png?sanitize=true#gh-light-mode-only" alt="Aiken" max-height="240" />
|
||||
<hr />
|
||||
<h2 align="center" style="border-bottom: none">Cardano smart contract language and toolchain</h2>
|
||||
|
||||
[](https://github.com/txpipe/aiken/blob/main/LICENSE)
|
||||
[](https://github.com/aiken-lang/aiken/blob/main/LICENSE)
|
||||
[](https://crates.io/crates/aiken)
|
||||
[](https://github.com/txpipe/aiken/actions/workflows/rust.yml)
|
||||
[](https://github.com/aiken-lang/aiken/actions/workflows/rust.yml)
|
||||
|
||||
<hr/>
|
||||
</div>
|
||||
|
@ -39,18 +39,13 @@ For more information please see the [user manual](https://aiken-lang.org).
|
|||
|
||||
## Roadmap
|
||||
|
||||
Aiken defines its roadmap [using _Github Milestones_](https://txpipe.github.io/aiken/introduction.html#roadmap).
|
||||
Aiken defines its roadmap [using _Github Milestones_](https://aiken-lang.org/#roadmap).
|
||||
The roadmap isn't set in stone, but gives a high-level overview of where the project is headed for.
|
||||
|
||||
## Contributing
|
||||
|
||||
Want to contribute? See [CONTRIBUTING.md](./CONTRIBUTING.md) to know how.
|
||||
|
||||
## Acknowledgment
|
||||
|
||||
We'd like to give a special thanks to [@nkz](https://twitter.com/nkzthecreator)
|
||||
for creating the logo and giving us the idea to name the project Aiken.
|
||||
|
||||
---
|
||||
|
||||
> **Note**
|
||||
|
|
|
@ -3,8 +3,8 @@ name = "aiken"
|
|||
description = "Cardano smart contract language and toolchain"
|
||||
version = "0.0.26"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/aiken"
|
||||
homepage = "https://github.com/txpipe/aiken"
|
||||
repository = "https://github.com/aiken-lang/aiken"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ name = "flat-rs"
|
|||
description = "Flat codec"
|
||||
version = "0.0.21"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/aiken/crates/flat"
|
||||
homepage = "https://github.com/txpipe/aiken"
|
||||
repository = "https://github.com/aiken-lang/aiken/crates/flat"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ name = "aiken-lang"
|
|||
description = "The aiken compiler"
|
||||
version = "0.0.26"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/aiken"
|
||||
homepage = "https://github.com/txpipe/aiken"
|
||||
repository = "https://github.com/aiken-lang/aiken"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ name = "aiken-lsp"
|
|||
version = "0.0.26"
|
||||
edition = "2021"
|
||||
description = "Cardano smart contract language and toolchain"
|
||||
repository = "https://github.com/txpipe/aiken"
|
||||
homepage = "https://github.com/txpipe/aiken"
|
||||
repository = "https://github.com/aiken-lang/aiken"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Lucas Rosa <x@rvcas.dev>"]
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ name = "aiken-project"
|
|||
description = "Aiken project utilities"
|
||||
version = "0.0.26"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/aiken/crates/project"
|
||||
homepage = "https://github.com/txpipe/aiken"
|
||||
repository = "https://github.com/aiken-lang/aiken/crates/project"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ name = "uplc"
|
|||
description = "Utilities for working with Untyped Plutus Core"
|
||||
version = "0.0.25"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/aiken/crates/uplc"
|
||||
homepage = "https://github.com/txpipe/aiken"
|
||||
repository = "https://github.com/aiken-lang/aiken/crates/uplc"
|
||||
homepage = "https://github.com/aiken-lang/aiken"
|
||||
license = "Apache-2.0"
|
||||
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
|
||||
|
||||
|
|
Loading…
Reference in New Issue