Skip to content

Commit 57392d9

Browse files
committed
Bump Scala to 2.13.12
1 parent 7e72fdf commit 57392d9

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

cell_factories/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name := "Cell Factories"
22
organization := "scalafx.org"
33
version := "1.0.0"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
88

99
// Add dependency on ScalaFX library
10-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
10+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1111

1212
resolvers ++= Opts.resolver.sonatypeOssSnapshots
1313

event-filters/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name := "Event Filters"
22
organization := "scalafx.org"
33
version := "1.0.8"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
88

9-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
9+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1010

1111
resolvers ++= Opts.resolver.sonatypeOssSnapshots
1212

hello-sbt/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ name := "Hello SBT"
55
version := "1.0.7"
66

77
// Version of Scala used by the project
8-
scalaVersion := "2.13.10"
8+
scalaVersion := "2.13.12"
99

1010
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
1111

1212
// Add dependency on ScalaFX library
13-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
13+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1414

1515
resolvers ++= Opts.resolver.sonatypeOssSnapshots
1616

molecule-3d/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name := "Molecule 3D"
22
organization := "scalafx.org"
33
version := "0.2.6"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
resolvers += Resolver.sonatypeRepo("snapshots")
88

99
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
1010

11-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
11+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1212

1313
// Fork a new JVM for 'run' and 'test:run', to avoid JavaFX double initialization problems
1414
fork := true

properties/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name := "Properties"
22
organization := "scalafx.org"
33
version := "0.3"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
88

9-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
9+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1010

1111
resolvers ++= Opts.resolver.sonatypeOssSnapshots
1212

sam_event_handlers/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name := "SAM Event Handlers"
22
organization := "ScalaFX.org"
33
version := "0.1.3"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
88

9-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
9+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1010

1111
resolvers ++= Opts.resolver.sonatypeOssSnapshots
1212

scalafxml-example/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name := "ScalaFXML Example"
22
organization := "scalafx.org"
33
version := "1.0.7"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8", "-Ymacro-annotations")
88

99
Compile / resourceDirectory := (Compile / scalaSource).value
1010
libraryDependencies ++= Seq(
11-
"org.scalafx" %% "scalafx" % "20.0.0-R31",
11+
"org.scalafx" %% "scalafx" % "21.0.0-R32",
1212
"org.scalafx" %% "scalafxml-core-sfx8" % "0.5"
1313
)
1414

slick-table/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name := "Slick Table"
22
organization := "org.scalafx"
33
version := "0.3"
44

5-
scalaVersion := "2.13.10"
5+
scalaVersion := "2.13.12"
66

77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
88

99
libraryDependencies ++= Seq(
10-
"org.scalafx" %% "scalafx" % "20.0.0-R31",
10+
"org.scalafx" %% "scalafx" % "21.0.0-R32",
1111
"com.typesafe.slick" %% "slick" % "3.4.1",
1212
"org.slf4j" % "slf4j-nop" % "2.0.7",
1313
"com.h2database" % "h2" % "2.1.214"

splash-demo/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ organization := "org.scalafx"
44

55
version := "0.2.2"
66

7-
scalaVersion := "2.13.10"
7+
scalaVersion := "2.13.12"
88

99
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8")
1010

11-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
11+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
1212

1313
resolvers ++= Opts.resolver.sonatypeOssSnapshots
1414

spreadsheetview/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name := "SpreadsheetView"
2-
scalaVersion := "2.13.10"
2+
scalaVersion := "2.13.12"
33

4-
libraryDependencies += "org.scalafx" %% "scalafx" % "20.0.0-R31"
4+
libraryDependencies += "org.scalafx" %% "scalafx" % "21.0.0-R32"
55
libraryDependencies += "org.controlsfx" % "controlsfx" % "11.1.2"
66

77
resolvers += Resolver.mavenLocal

0 commit comments

Comments
 (0)