Skip to content

Commit

Permalink
Use Scala 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmendez committed Nov 11, 2024
1 parent 0242353 commit 2015c10
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- 11.0.21
- 21.0.1
scala:
- 3.3.4
- 3.5.2
steps:
- name: Check out
Expand Down
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import sbt.Keys.scalacOptions

lazy val scala3_3 = "3.3.4"

lazy val scala3_5 = "3.5.2"

lazy val commonSettings =
Expand All @@ -23,8 +25,8 @@ lazy val commonSettings =
* [[https://repo1.maven.org/maven2/org/scala-lang/scalap/]]
* [[https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/]]
*/
crossScalaVersions := Seq(scala3_5),
scalaVersion := scala3_5,
crossScalaVersions := Seq(scala3_3, scala3_5),
scalaVersion := scala3_3,

/**
* ScalaTest
Expand Down
2 changes: 1 addition & 1 deletion docs/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
- new_features:
- first operational example
- build: $ `sbt clean compile test package assembly`
- release: target/scala-3.5.2/market-0.1.0.jar
- release: target/scala-3.3.4/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 @@ -5,7 +5,7 @@
# It requires `sbt` [https://www.scala-sbt.org/].
#

scalaVersion="3.5.2"
scalaVersion="3.3.4"
executableStub="exec java -jar \$0 \"\$@\" ; exit"

sbt scalaVersion sbtVersion version clean compile test package assembly
Expand Down

0 comments on commit 2015c10

Please sign in to comment.