Skip to content

Commit ef9716d

Browse files
authored
Update README.md bump versions
1 parent f5c498c commit ef9716d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ scala> w.drawText("Hello introprog.PixelWindow!", x = 100, y = 100)
3535
If you want to use `introprog` in your program, add these magic comment lines starting with `//>` in the beginning of your Scala 3 file (update the version number after `//> using scala` to the [latest release](https://www.scala-lang.org/)):
3636

3737
```
38-
//> using scala 3.5.2
39-
//> using dep se.lth.cs::introprog:1.3.1
38+
//> using scala 3.7.2
39+
//> using dep se.lth.cs::introprog:1.4.0
4040
```
4141

4242
You can then run your code with `scala run .` (note the ending dot, meaning "current dir")
4343

4444
If your program looks like this:
4545

4646
```
47-
//> using scala 3.5.2
47+
//> using scala 3.7.2
4848
//> using dep se.lth.cs::introprog:1.4.0
4949
5050
@main def run =
@@ -66,7 +66,7 @@ scala-cli run . --dep se.lth.cs::introprog:1.4.0
6666

6767
If you use the [Scala Build Tool, version 1.6 or later](https://www.scala-sbt.org/download.html) then put this text in a file called `build.sbt`
6868
```
69-
scalaVersion := "3.5.2"
69+
scalaVersion := "3.7.2"
7070
libraryDependencies += "se.lth.cs" %% "introprog" % "1.4.0"
7171
```
7272

0 commit comments

Comments
 (0)