Skip to content

Commit d31f0a4

Browse files
authored
Version bumps (#276)
1 parent 072a0e8 commit d31f0a4

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ jobs:
55
test:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3.0.1
8+
- uses: actions/checkout@v4.1.1
99
- name: Cache sbt
1010
uses: coursier/cache-action@v6
1111
- name: Java 8 setup
12-
uses: olafurpg/setup-scala@v13
12+
uses: olafurpg/setup-scala@v14
1313
with:
1414
java-version: 1.8.0
1515
- run: sbt test

.scalafmt.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "3.5.1"
1+
version = "3.5.9"
22
maxColumn = 100
33

44
binPack.literalArgumentLists = true

build.sbt

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@
1515
* under the License.
1616
*/
1717

18-
import com.typesafe.sbt.SbtGit.GitKeys.gitRemoteRepo
18+
import com.github.sbt.git.SbtGit.GitKeys.gitRemoteRepo
1919
import _root_.io.regadas.sbt.SbtSoccoKeys._
2020

2121
organization := "com.spotify"
2222
name := "big-data-rosetta-code"
2323
version := "0.1.0-SNAPSHOT"
2424

25-
val scioVersion = "0.11.4"
25+
val scioVersion = "0.13.5"
2626
val scaldingVersion = "0.17.4"
27-
val sparkVersion = "3.2.1"
28-
val algebirdVersion = "0.13.9"
29-
val scalacheckVersion = "1.16.0"
27+
val sparkVersion = "3.5.0"
28+
val algebirdVersion = "0.13.10"
29+
val scalacheckVersion = "1.17.0"
3030
val scalameterVersion = "0.19"
31-
val scalatestVersion = "3.2.11"
32-
val scalatestPlusVersion = "3.1.0.0-RC2"
31+
val scalatestVersion = "3.2.17"
32+
val scalatestPlusVersion = "3.2.17.0"
3333

34-
scalaVersion := "2.12.13"
34+
scalaVersion := "2.12.18"
3535
scalacOptions ++= Seq(
3636
"-target:jvm-1.8",
3737
"-deprecation",
@@ -51,7 +51,7 @@ libraryDependencies ++= Seq(
5151
"org.apache.spark" %% "spark-core" % sparkVersion,
5252
"org.apache.spark" %% "spark-mllib" % sparkVersion,
5353
"org.scalatest" %% "scalatest" % scalatestVersion % "test",
54-
"org.scalatestplus" %% "scalatestplus-scalacheck" % scalatestPlusVersion % "test",
54+
"org.scalatestplus" %% "scalacheck-1-17" % scalatestPlusVersion % "test",
5555
"org.scalacheck" %% "scalacheck" % scalacheckVersion % "test",
5656
"com.storm-enroute" %% "scalameter" % scalameterVersion % "test"
5757
)

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.6.2
1+
sbt.version=1.9.7

project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
2-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
3-
addSbtPlugin("io.regadas" % "sbt-socco" % "0.1.4")
1+
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0")
2+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
3+
addSbtPlugin("io.regadas" % "sbt-socco" % "0.1.5")

0 commit comments

Comments
 (0)