Skip to content

Commit b95dc03

Browse files
committed
Bump scala version to 2.11.4
1 parent ebc7cb9 commit b95dc03

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ScalaCL... v3 (yeah, yet another rewrite from scratch FTW!)
22

3-
NOT FUNCTIONAL YET, WORK IN PROGRESS (see [ScalaCL](https://code.google.com/p/scalacl/) if you want something that _works_, albeit only on Scala 2.9.x).
3+
BARELY FUNCTIONAL YET, WORK IN PROGRESS (see [ScalaCL](https://code.google.com/p/scalacl/) if you want something that _works_, albeit only on Scala 2.9.x).
44

55
Features of the new design:
66
- Much better asynchronicity support (now requires OpenCL 1.1), and much better performance in general
@@ -28,7 +28,7 @@ Features of the new design:
2828
# Usage
2929

3030
```scala
31-
scalaVersion := "2.10.3"
31+
scalaVersion := "2.11.4"
3232

3333
libraryDependencies += "com.nativelibs4java" %% "scalacl" % "0.3-SNAPSHOT"
3434

project/ScalaCLBuild.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ object ScalaCLBuild extends Build {
6565

6666
fork := true,
6767

68-
scalaVersion := "2.11.1",
68+
scalaVersion := "2.11.4",
6969
scalacOptions ++= Seq(
7070
"-language:experimental.macros",
7171
"-encoding", "UTF-8",

src/main/scala/scalacl/impl/KernelSymbolsAnalysis.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ package impl
3333

3434
import scala.language.reflectiveCalls
3535

36-
3736
trait KernelSymbolsAnalysis
3837
extends CommonScalaNames
3938
with CodeConversionResults

src/main/scala/scalacl/impl/SymbolExtensions.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ package impl
3333

3434
import scala.language.implicitConversions
3535

36-
3736
trait SymbolExtensions {
3837
val global: reflect.api.Universe
3938
import global._

src/main/scala/scalacl/impl/dataio/ScalarDataIOMacros.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
// package scalacl
3232
// package impl
3333

34-
35-
3634
// object ScalarDataIOs {
3735
// def scalarDataIO[A: c.WeakTypeTag](c: Context)(m: c.Expr[Manifest[A]]): c.Expr[ScalarDataIO[A]] = {
3836
// import c.universe._

0 commit comments

Comments
 (0)