Skip to content

Commit

Permalink
Use Scala 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmendez committed Aug 7, 2024
1 parent 7732888 commit 28b322c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ jobs:
matrix:
java:
- 11.0.21
- 17.0.9
- 21.0.1
scala:
- 3.4.0
- 3.4.2
steps:
- name: Check out
uses: actions/checkout@v4
Expand Down
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sbt.Keys.scalacOptions

lazy val scala3_4 = "3.4.0"
lazy val scala3_4 = "3.4.2"

lazy val commonSettings =
Seq(
Expand All @@ -13,8 +13,7 @@ lazy val commonSettings =
organizationName := "Umea University",
organizationHomepage := Some(url("https://www.umu.se/en/department-of-computing-science/")),
developers := List(
Developer("julianmendez", "Julian Alfredo Mendez", "[email protected]", new URL
("https://julianmendez.github.io"))
Developer("julianmendez", "Julian Alfredo Mendez", "[email protected]", url("https://julianmendez.github.io"))
),

/**
Expand All @@ -33,7 +32,7 @@ lazy val commonSettings =
* [[https://github.com/scalatest/scalatest]]
* [[https://repo1.maven.org/maven2/org/scalatest/]]
*/
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test",
resolvers += Resolver.mavenLocal,
publishTo := Some(Resolver.mavenLocal),
publishMavenStyle := true,
Expand Down
4 changes: 2 additions & 2 deletions docs/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- date: unreleased
- new_features:
- first operational example
- build: $ `sbt '++ 3.4.0' clean compile test package assembly`
- release: target/scala-3.4.0/market-0.1.0.jar
- build: $ `sbt '++ 3.4.2' clean compile test package assembly`
- release: target/scala-3.4.2/market-0.1.0.jar


2 changes: 1 addition & 1 deletion makeall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

sbt scalaVersion sbtVersion version clean compile test package assembly

scalaVersion="3.4.0"
scalaVersion="3.4.2"
binaryFile="market"
executableStub="exec java -jar \$0 \"\$@\" ; exit"
jarFile="target/scala-${scalaVersion}/${binaryFile}-*.jar"
Expand Down

0 comments on commit 28b322c

Please sign in to comment.