diff --git a/README.md b/README.md index d97bf9b..2f67d39 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,13 @@ Any version number that starts with `0.` is automatically recognized as Dotty, you don't need to set up anything: ```scala -def scalaVersion = "0.10.0-RC1" +def scalaVersion = "0.12.0-RC1" ``` #### Nightly builds If the latest release of Dotty is missing a bugfix or feature you need, you may wish to use a nightly build. Look at the bottom of -https://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.11/ to find the version +https://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.13/ to find the version number for the latest nightly build. ## Getting your project to compile with Dotty diff --git a/build.sc b/build.sc index 6f2e7ed..5309e21 100644 --- a/build.sc +++ b/build.sc @@ -2,6 +2,6 @@ import mill._, scalalib._ object root extends SbtModule { def millSourcePath = ammonite.ops.pwd - def scalaVersion = "0.10.0-RC1" + def scalaVersion = "0.12.0-RC1" def publishVersion = "0.1.0" }