From 5554889868e52060ff465dc513034e30b7d23baa Mon Sep 17 00:00:00 2001 From: Igor Moreno Date: Wed, 5 Mar 2025 14:43:28 +0100 Subject: [PATCH] Update version of os-lib in install-scala.md With the version 0.10.7, currently in the documentation, the output includes a hint suggesting to update the version of the library: ``` [hint] ./counter.scala:2:16 [hint] "os-lib is outdated, update to 0.11.4" [hint] os-lib 0.10.7 -> com.lihaoyi::os-lib:0.11.4 [hint] //> using dep "com.lihaoyi::os-lib:0.10.7" [hint] ^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` --- _overviews/getting-started/install-scala.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/getting-started/install-scala.md b/_overviews/getting-started/install-scala.md index df32bb7c44..0154e3b246 100644 --- a/_overviews/getting-started/install-scala.md +++ b/_overviews/getting-started/install-scala.md @@ -202,7 +202,7 @@ We use the [os-lib](https://github.com/com-lihaoyi/os-lib) library from the [Sca for that purpose. A dependency on the library can be added with the `//> using` directive. Put the following code in `counter.scala`. ```scala //> using scala {{site.scala-3-version}} -//> using dep "com.lihaoyi::os-lib:0.10.7" +//> using dep "com.lihaoyi::os-lib:0.11.4" @main def countFiles(): Unit =