Skip to content

Commit d9045a4

Browse files
committed
Toolkit tutorials: update Scala version
1 parent f767949 commit d9045a4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

_includes/_markdown/install-munit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In your build.sbt file, you can add the dependency on toolkit-test:
1818
```scala
1919
lazy val example = project.in(file("example"))
2020
.settings(
21-
scalaVersion := "3.2.2",
21+
scalaVersion := "3.3.3",
2222
libraryDependencies += "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test
2323
)
2424
```
@@ -33,7 +33,7 @@ libraryDependencies += "org.scalameta" %% "munit" % "1.0.0-M7" % Test
3333
In your build.sc file, you can add a `test` object extending `Tests` and `TestModule.Munit`:
3434
```scala
3535
object example extends ScalaModule {
36-
def scalaVersion = "3.2.2"
36+
def scalaVersion = "3.3.3"
3737
object test extends Tests with TestModule.Munit {
3838
def ivyDeps =
3939
Agg(

_includes/_markdown/install-os-lib.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In your `build.sbt`, you can add a dependency on the toolkit:
1717
```scala
1818
lazy val example = project.in(file("example"))
1919
.settings(
20-
scalaVersion := "3.2.2",
20+
scalaVersion := "3.3.3",
2121
libraryDependencies += "org.scala-lang" %% "toolkit" % "0.1.7"
2222
)
2323
```
@@ -30,7 +30,7 @@ libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.9.1"
3030
In your `build.sc` file, you can add a dependency on the Toolkit:
3131
```scala
3232
object example extends ScalaModule {
33-
def scalaVersion = "3.2.2"
33+
def scalaVersion = "3.3.3"
3434
def ivyDeps =
3535
Agg(
3636
ivy"org.scala-lang::toolkit:0.1.7"

_includes/_markdown/install-sttp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In your build.sbt file, you can add a dependency on the Toolkit:
1717
```scala
1818
lazy val example = project.in(file("example"))
1919
.settings(
20-
scalaVersion := "3.2.2",
20+
scalaVersion := "3.3.3",
2121
libraryDependencies += "org.scala-lang" %% "toolkit" % "0.1.7"
2222
)
2323
```
@@ -31,7 +31,7 @@ libraryDependencies += "com.softwaremill.sttp.client4" %% "core" % "4.0.0-M1"
3131
In your build.sc file, you can add a dependency on the Toolkit:
3232
```scala
3333
object example extends ScalaModule {
34-
def scalaVersion = "3.2.2"
34+
def scalaVersion = "3.3.3"
3535
def ivyDeps =
3636
Agg(
3737
ivy"org.scala-lang::toolkit:0.1.7"

_includes/_markdown/install-upickle.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In your build.sbt file, you can add the dependency on the Toolkit:
1717
```scala
1818
lazy val example = project.in(file("example"))
1919
.settings(
20-
scalaVersion := "3.2.2",
20+
scalaVersion := "3.3.3",
2121
libraryDependencies += "org.scala-lang" %% "toolkit" % "0.1.7"
2222
)
2323
```
@@ -30,7 +30,7 @@ libraryDependencies += "com.lihaoyi" %% "upickle" % "3.1.0"
3030
In your build.sc file, you can add the dependency to the upickle library:
3131
```scala
3232
object example extends ScalaModule {
33-
def scalaVersion = "3.2.2"
33+
def scalaVersion = "3.3.3"
3434
def ivyDeps =
3535
Agg(
3636
ivy"org.scala-lang::toolkit:0.1.7"

0 commit comments

Comments
 (0)