aboutsummaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-01-08 20:50:58 +0100
committerGitHub <noreply@github.com>2017-01-08 20:50:58 +0100
commitadd9a03fc3a4fe61d53ddf956dfd6f451f19f46b (patch)
tree19163e9d56058bda0205c3cf4e284027e6adf04b /compiler
parent7113db7a638868edd72e5f1a89a16ed85641a20f (diff)
parent0bca6b76ee6c7c9555707d03551593dd04b5fe81 (diff)
downloaddotty-add9a03fc3a4fe61d53ddf956dfd6f451f19f46b.tar.gz
dotty-add9a03fc3a4fe61d53ddf956dfd6f451f19f46b.tar.bz2
dotty-add9a03fc3a4fe61d53ddf956dfd6f451f19f46b.zip
Merge pull request #1888 from dotty-staging/bump-version-011
Bump version from 0.1-SNAPSHOT to 0.1.1-SNAPSHOT
Diffstat (limited to 'compiler')
-rw-r--r--compiler/test/dotc/tests.scala2
-rw-r--r--compiler/test/dotty/Jars.scala6
2 files changed, 4 insertions, 4 deletions
diff --git a/compiler/test/dotc/tests.scala b/compiler/test/dotc/tests.scala
index eecb068fe..fd8b005a9 100644
--- a/compiler/test/dotc/tests.scala
+++ b/compiler/test/dotc/tests.scala
@@ -279,7 +279,7 @@ class tests extends CompilerTest {
@Test def dotc_typer = compileDir(dotcDir, "typer")// twice omitted to make tests run faster
// error: error while loading Checking$$anon$2$,
- // class file 'target/scala-2.11/dotty_2.11-0.1-SNAPSHOT.jar(dotty/tools/dotc/typer/Checking$$anon$2.class)'
+ // class file 'target/scala-2.11/dotty_2.11-0.1.1-SNAPSHOT.jar(dotty/tools/dotc/typer/Checking$$anon$2.class)'
// has location not matching its contents: contains class $anon
@Test def dotc_util = compileDir(dotcDir, "util") // twice omitted to make tests run faster
diff --git a/compiler/test/dotty/Jars.scala b/compiler/test/dotty/Jars.scala
index 42c707069..6fc9b0fde 100644
--- a/compiler/test/dotty/Jars.scala
+++ b/compiler/test/dotty/Jars.scala
@@ -3,15 +3,15 @@ package dotty
/** Jars used when compiling test, defaults to sbt locations */
object Jars {
val dottyLib: String = sys.env.get("DOTTY_LIB") getOrElse {
- "../library/target/scala-2.11/dotty-library_2.11-0.1-SNAPSHOT.jar"
+ "../library/target/scala-2.11/dotty-library_2.11-0.1.1-SNAPSHOT.jar"
}
val dottyCompiler: String = sys.env.get("DOTTY_COMPILER") getOrElse {
- "./target/scala-2.11/dotty-compiler_2.11-0.1-SNAPSHOT.jar"
+ "./target/scala-2.11/dotty-compiler_2.11-0.1.1-SNAPSHOT.jar"
}
val dottyInterfaces: String = sys.env.get("DOTTY_INTERFACE") getOrElse {
- "../interfaces/target/dotty-interfaces-0.1-SNAPSHOT.jar"
+ "../interfaces/target/dotty-interfaces-0.1.1-SNAPSHOT.jar"
}
val dottyExtras: List[String] = sys.env.get("DOTTY_EXTRAS")