Skip to content

Commit

Permalink
Version bumps (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
kellen authored Nov 9, 2023
1 parent 072a0e8 commit d31f0a4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.1
- uses: actions/checkout@v4.1.1
- name: Cache sbt
uses: coursier/cache-action@v6
- name: Java 8 setup
uses: olafurpg/setup-scala@v13
uses: olafurpg/setup-scala@v14
with:
java-version: 1.8.0
- run: sbt test
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.5.1"
version = "3.5.9"
maxColumn = 100

binPack.literalArgumentLists = true
Expand Down
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
* under the License.
*/

import com.typesafe.sbt.SbtGit.GitKeys.gitRemoteRepo
import com.github.sbt.git.SbtGit.GitKeys.gitRemoteRepo
import _root_.io.regadas.sbt.SbtSoccoKeys._

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

val scioVersion = "0.11.4"
val scioVersion = "0.13.5"
val scaldingVersion = "0.17.4"
val sparkVersion = "3.2.1"
val algebirdVersion = "0.13.9"
val scalacheckVersion = "1.16.0"
val sparkVersion = "3.5.0"
val algebirdVersion = "0.13.10"
val scalacheckVersion = "1.17.0"
val scalameterVersion = "0.19"
val scalatestVersion = "3.2.11"
val scalatestPlusVersion = "3.1.0.0-RC2"
val scalatestVersion = "3.2.17"
val scalatestPlusVersion = "3.2.17.0"

scalaVersion := "2.12.13"
scalaVersion := "2.12.18"
scalacOptions ++= Seq(
"-target:jvm-1.8",
"-deprecation",
Expand All @@ -51,7 +51,7 @@ libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion,
"org.apache.spark" %% "spark-mllib" % sparkVersion,
"org.scalatest" %% "scalatest" % scalatestVersion % "test",
"org.scalatestplus" %% "scalatestplus-scalacheck" % scalatestPlusVersion % "test",
"org.scalatestplus" %% "scalacheck-1-17" % scalatestPlusVersion % "test",
"org.scalacheck" %% "scalacheck" % scalacheckVersion % "test",
"com.storm-enroute" %% "scalameter" % scalameterVersion % "test"
)
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.9.7
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("io.regadas" % "sbt-socco" % "0.1.4")
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("io.regadas" % "sbt-socco" % "0.1.5")

0 comments on commit d31f0a4

Please sign in to comment.