From 4fc51a7e58c127741ae63e56b78facbdf5c803b2 Mon Sep 17 00:00:00 2001 From: Allan Renucci Date: Tue, 27 Nov 2018 18:13:33 +0100 Subject: [PATCH] Release Dotty 0.11.0-RC1 --- README.md | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b819295..6eff7d1 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,13 @@ Any version number that starts with `0.` is automatically recognized as Dotty by the `sbt-dotty` plugin, you don't need to set up anything: ```scala -scalaVersion := "0.10.0-RC1" +scalaVersion := "0.11.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.12/ to find the version number for the latest nightly build. Alternatively, you can set `scalaVersion := dottyLatestNightlyBuild.get` to always use the latest nightly build of dotty. diff --git a/build.sbt b/build.sbt index 0126c9d..96030d8 100644 --- a/build.sbt +++ b/build.sbt @@ -5,5 +5,5 @@ lazy val root = project description := "Example sbt project that compiles using Dotty", version := "0.1.0", - scalaVersion := "0.10.0-RC1" + scalaVersion := "0.11.0-RC1" )