Skip to content

Commit cceb3c2

Browse files
Update dotty-example-project name
1 parent 266725f commit cceb3c2

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

docs/_includes/getting-started.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ <h1 id="getting-started-with-a-project">Create a Dotty Project</h1>
2323
<p>Or a Dotty project that cross compiles with Scala 2:</p>
2424
<pre><code>sbt new <a href="https://github.com/lampepfl/dotty-cross.g8">lampepfl/dotty-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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ 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
23+
- [ ] https://github.com/scala/scala3-example-project/tree/mill
2424
- [ ] 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/)
2525
- [ ] Committed to `master`
2626
- [ ] 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/)

docs/docs/contributing/procedures/release.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ 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)
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)
8282
- [Dotty G8 template](https://github.com/lampepfl/dotty.g8)
8383
- Deploy: `git clone https://github.com/lampepfl/dotty.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`

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/usage/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)