Skip to content

Commit b2e3665

Browse files
Merge pull request #10698 from dotty-staging/update-project-names
Update getting started project names in the docs
2 parents a1434a8 + 45a25d1 commit b2e3665

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed

docs/_includes/getting-started.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ <h1 id="getting-started-with-a-project">Create a Dotty Project</h1>
1818
<p>The fastest way to create a new project in Dotty is using <a href="http://www.scala-sbt.org/">sbt (1.1.4+)</a>.</p>
1919

2020
<p>Create a Dotty project:</p>
21-
<pre><code>sbt new <a href="https://github.com/lampepfl/dotty.g8">lampepfl/dotty.g8</a></code></pre>
21+
<pre><code>sbt new <a href="https://github.com/scala/scala3.g8">scala/scala3.g8</a></code></pre>
2222

2323
<p>Or a Dotty project that cross compiles with Scala 2:</p>
24-
<pre><code>sbt new <a href="https://github.com/lampepfl/dotty-cross.g8">lampepfl/dotty-cross.g8</a></code></pre>
24+
<pre><code>sbt new <a href="https://github.com/scala/scala3-cross.g8">scala/scala3-cross.g8</a></code></pre>
2525

26-
<p>For documentation see the <a href="https://github.com/lampepfl/dotty-example-project">Dotty Example Project</a>.</p>
26+
<p>For documentation see the <a href="https://github.com/scala/scala3-example-project">Dotty Example Project</a>.</p>
2727
</div>
2828
</section>

docs/docs/contributing/checklist.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ LIST='- [ ] Publish artifacts to Maven via CI
1818
- [ ] On `<rc-branch>`, set `baseVersion` to `<rc-version>` and `git tag` it as `<rc-version>`. This will publish artefacts to Sonatype and GitHub Release.
1919
- [ ] On `master`, set `baseVersion` to `<next-version>`
2020
- [ ] Update `scalaVersion` (and, if applicable, the `sbt-dotty` version) in the Dotty ecosystem projects
21-
- [ ] https://github.com/lampepfl/dotty-example-project [![Build Status](https://travis-ci.org/lampepfl/dotty-example-project.svg?branch=master)](https://travis-ci.org/lampepfl/dotty-example-project)
21+
- [ ] https://github.com/scala/scala3-example-project [![Build Status](https://travis-ci.org/scala/scala3-example-project.svg?branch=master)](https://travis-ci.org/scala/scala3-example-project)
2222
- [ ] Committed to `master`
23-
- [ ] https://github.com/lampepfl/dotty-example-project/tree/mill
24-
- [ ] https://github.com/lampepfl/dotty.g8 [![Build Status](https://travis-ci.org/lampepfl/dotty.g8.svg?branch=master)](https://travis-ci.org/lampepfl/dotty.g8/)
23+
- [ ] https://github.com/scala/scala3-example-project/tree/mill
24+
- [ ] https://github.com/scala/scala3.g8 [![Build Status](https://travis-ci.org/scala/scala3.g8.svg?branch=master)](https://travis-ci.org/scala/scala3.g8/)
2525
- [ ] Committed to `master`
26-
- [ ] https://github.com/lampepfl/dotty-cross.g8 [![Build Status](https://travis-ci.org/lampepfl/dotty-cross.g8.svg?branch=master)](https://travis-ci.org/lampepfl/dotty-cross.g8/)
26+
- [ ] https://github.com/scala/scala3-cross.g8 [![Build Status](https://travis-ci.org/scala/scala3-cross.g8.svg?branch=master)](https://travis-ci.org/scala/scala3-cross.g8/)
2727
- [ ] Committed to `master`
2828
- [ ] https://github.com/lampepfl/homebrew-brew [![Build Status](https://travis-ci.org/lampepfl/homebrew-brew.svg?branch=master)](https://travis-ci.org/lampepfl/homebrew-brew)
2929
- [ ] Committed to `master`

docs/docs/contributing/procedures/release.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,22 +71,22 @@ After the release is done, we document it as follows:
7171
## Ecosystem
7272
After releasing a new version of Dotty, we need to make sure to update the following related projects:
7373

74-
- [Example Project](https://github.com/lampepfl/dotty-example-project)
75-
- To deploy locally: `git clone https://github.com/lampepfl/dotty-example-project.git && cd dotty-example-project/`
74+
- [Example Project](https://github.com/scala/scala3-example-project)
75+
- To deploy locally: `git clone https://github.com/scala/scala3-example-project.git && cd dotty-example-project/`
7676
- To test locally: `sbt run`
77-
- [Commit](https://github.com/lampepfl/dotty-example-project/commit/76bf0b4d708206b1901fa7f291f07cd470506e79) updating the Dotty version (only `README` and `build.sbt` files)
78-
- [Example Project with Mill](https://github.com/lampepfl/dotty-example-project/tree/mill)
79-
- Deploy: `git clone https://github.com/lampepfl/dotty-example-project && cd dotty-example-project && git checkout mill`
77+
- [Commit](https://github.com/scala/scala3-example-project/commit/76bf0b4d708206b1901fa7f291f07cd470506e79) updating the Dotty version (only `README` and `build.sbt` files)
78+
- [Example Project with Mill](https://github.com/scala/scala3-example-project/tree/mill)
79+
- Deploy: `git clone https://github.com/scala/scala3-example-project && cd dotty-example-project && git checkout mill`
8080
- Test: `mill root.run`
81-
- [Commit 1](https://github.com/lampepfl/dotty-example-project/commit/e1ad1905ef38d07943e0c176333ba24e306a2078)`build.sc` only; [Commit 2](https://github.com/lampepfl/dotty-example-project/commit/23bc5df89e72b782ab8e19157d6bbcb67eef30cd)
82-
- [Dotty G8 template](https://github.com/lampepfl/dotty.g8)
83-
- Deploy: `git clone https://github.com/lampepfl/dotty.g8.git`
81+
- [Commit 1](https://github.com/scala/scala3-example-project/commit/e1ad1905ef38d07943e0c176333ba24e306a2078)`build.sc` only; [Commit 2](https://github.com/scala/scala3-example-project/commit/23bc5df89e72b782ab8e19157d6bbcb67eef30cd)
82+
- [Dotty G8 template](https://github.com/scala/scala3.g8)
83+
- Deploy: `git clone https://github.com/scala/scala3.g8.git`
8484
- Test (note the relative path as argument to `sbt new`, hence this command should be run after Deploy in the same directory as Deploy): `sbt new file://./dotty.g8 --name=foo --description=bar && cd foo && sbt run`
85-
- [Commit](https://github.com/lampepfl/dotty.g8/commit/0cde8fa843e15e916f07f22a196f35a5988b26af)
86-
- [Dotty G8 template with cross build support](https://github.com/lampepfl/dotty-cross.g8)
87-
- Deploy: `git clone https://github.com/lampepfl/dotty-cross.g8.git`
85+
- [Commit](https://github.com/scala/scala3.g8/commit/0cde8fa843e15e916f07f22a196f35a5988b26af)
86+
- [Dotty G8 template with cross build support](https://github.com/scala/scala3-cross.g8)
87+
- Deploy: `git clone https://github.com/scala/scala3-cross.g8.git`
8888
- Test: `sbt new file://./dotty-cross.g8 --name=foo --description=bar && cd foo && sbt run`
89-
- [Commit](https://github.com/lampepfl/dotty-cross.g8/commit/0e3ea2ae8ba8d001e63e5098ff60d728036d358f)
89+
- [Commit](https://github.com/scala/scala3-cross.g8/commit/0e3ea2ae8ba8d001e63e5098ff60d728036d358f)
9090
- [Dotty Homebrew Formula](https://github.com/lampepfl/homebrew-brew)
9191
- Deploy: `git clone https://github.com/lampepfl/homebrew-brew.git && cd homebrew-brew`
9292
- [Commit](https://github.com/lampepfl/homebrew-brew/commit/04f7284564387754a360a354159f2f8d6156a6c7). SHA256 sum comes from the issue checklist computed for the release as specified above. The file with checksums is available at [GitHub Releases](https://github.com/lampepfl/dotty/releases) -> release in question -> assets -> `sha256sum.txt` -> `*.tar.gz` file sum.

docs/docs/contributing/scala2-vs-scala3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following issues encountered when compiling Scala 2 code as-is under Dotty:
1313

1414
## Trivial
1515
- Scala 2.13 libraries cannot be used from Dotty because the dotty-library is compiled against the 2.12 standard library which is not binary-compatible with the 2.13 one. We can't be compatible with both at the same time.
16-
- To use Scala 2.12 dependencies from SBT with Dotty, use `withDottyCompat` as documented [here](https://github.com/lampepfl/dotty-example-project#getting-your-project-to-compile-with-dotty).
16+
- To use Scala 2.12 dependencies from SBT with Dotty, use `withDottyCompat` as documented [here](https://github.com/scala/scala3-example-project#getting-your-project-to-compile-with-dotty).
1717
- Feature warnings about implicits `scala.language.implicitConversions` are output by default, unlike in Scala 2. This creates noise. Unclear how to turn off.
1818

1919
Implicit conversions must be applied explicitly:

docs/docs/reference/metaprogramming/staging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ def withQuotes[T](thunk: Quotes ?=> T)(using toolbox: Toolbox): T = ...
7474
## Create a new Dotty project with staging enabled
7575

7676
```shell
77-
sbt new lampepfl/dotty-staging.g8
77+
sbt new scala/scala3-staging.g8
7878
```
7979

80-
From [lampepfl/dotty-staging.g8](https://github.com/lampepfl/dotty-staging.g8).
80+
From [scala/scala3-staging.g8](https://github.com/scala/scala3-staging.g8).
8181

8282
It will create a project with the necessary dependencies and some examples.
8383

docs/docs/reference/metaprogramming/tasty-inspect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ scala -with-compiler -classpath out Test
5454
## Template project
5555
Using sbt version `1.1.5+`, do:
5656
```
57-
sbt new lampepfl/dotty-tasty-inspector.g8
57+
sbt new scala/scala3-tasty-inspector.g8
5858
```
5959
in the folder where you want to clone the template.

docs/docs/usage/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ The fastest way to create a new project compiled by Dotty is using [sbt (1.1.4+)
1414

1515
Create a simple Dotty project:
1616
```bash
17-
$ sbt new lampepfl/dotty.g8
17+
$ sbt new scala/scala3.g8
1818
```
1919

2020
Or a Dotty project that cross compiles with Scala 2:
2121
```bash
22-
$ sbt new lampepfl/dotty-cross.g8
22+
$ sbt new scala/scala3-cross.g8
2323
```
2424

2525
You can then start a Dotty REPL directly from your sbt project:
@@ -29,7 +29,7 @@ $ sbt
2929
scala>
3030
```
3131

32-
For more information, see the [Dotty Example Project](https://github.com/lampepfl/dotty-example-project)
32+
For more information, see the [Dotty Example Project](https://github.com/scala/scala3-example-project)
3333

3434
### IDE support
3535
Start using the Dotty IDE in any Dotty project by following the

docs/docs/usage/ide-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Currently, the only IDE we officially support is
1212
Prerequisites
1313
============
1414
To use this in your own Scala project, you must first get it to compile with
15-
Dotty, please follow the instructions at https://github.com/lampepfl/dotty-example-project
15+
Dotty, please follow the instructions at https://github.com/scala/scala3-example-project
1616

1717
Usage
1818
=====

0 commit comments

Comments
 (0)