Skip to content

Commit 89777ba

Browse files
committed
update os-lib versions in example
1 parent a7637f4 commit 89777ba

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

_includes/_markdown/install-os-lib.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,37 +9,37 @@ You can require the entire toolkit in a single line:
99

1010
Alternatively, you can require just a specific version of OS-Lib:
1111
```scala
12-
//> using dep com.lihaoyi::os-lib:0.9.1
12+
//> using dep com.lihaoyi::os-lib:0.11.3
1313
```
1414
{% endtab %}
1515
{% tab 'sbt' %}
1616
In your `build.sbt`, you can add a dependency on the toolkit:
1717
```scala
1818
lazy val example = project.in(file("."))
1919
.settings(
20-
scalaVersion := "3.3.4",
21-
libraryDependencies += "org.scala-lang" %% "toolkit" % "0.1.7"
20+
scalaVersion := "3.4.0",
21+
libraryDependencies += "org.scala-lang" %% "toolkit" % "0.7.0"
2222
)
2323
```
2424
Alternatively, you can require just a specific version of OS-Lib:
2525
```scala
26-
libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.9.1"
26+
libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.11.3"
2727
```
2828
{% endtab %}
2929
{% tab 'Mill' %}
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.3.4"
33+
def scalaVersion = "3.4.0"
3434
def ivyDeps =
3535
Agg(
36-
ivy"org.scala-lang::toolkit:0.1.7"
36+
ivy"org.scala-lang::toolkit:0.7.0"
3737
)
3838
}
3939
```
4040
Alternatively, you can require just a specific version of OS-Lib:
4141
```scala
42-
ivy"com.lihaoyi::os-lib:0.9.1"
42+
ivy"com.lihaoyi::os-lib:0.11.3"
4343
```
4444
{% endtab %}
4545
{% endtabs %}

0 commit comments

Comments
 (0)