From a423594f0fa91f5e80ee39c429d5fe3d8b7ab4e8 Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Tue, 16 Apr 2024 06:53:46 +0800 Subject: [PATCH] 0.4.1 --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 15cd7fd..54ff821 100644 --- a/README.md +++ b/README.md @@ -113,16 +113,16 @@ Download ```scala def ivyDeps = Agg( - ivy"com.lihaoyi::sourcecode:0.4.0", // Scala-JVM - ivy"com.lihaoyi::sourcecode::0.4.0" // Scala.js / Scala Native + ivy"com.lihaoyi::sourcecode:0.4.1", // Scala-JVM + ivy"com.lihaoyi::sourcecode::0.4.1" // Scala.js / Scala Native ) ``` **sbt** ```scala -"com.lihaoyi" %% "sourcecode" % "0.4.0" // Scala-JVM -"com.lihaoyi" %%% "sourcecode" % "0.4.0" // Scala.js / Scala Native +"com.lihaoyi" %% "sourcecode" % "0.4.1" // Scala-JVM +"com.lihaoyi" %%% "sourcecode" % "0.4.1" // Scala.js / Scala Native ``` @@ -644,6 +644,11 @@ in its `.toString` method. Version History =============== +0.4.1 +----- + +* Fix NullPointerException when using fileName under Scala 3 repl ([#153](https://github.com/com-lihaoyi/sourcecode/pull/153)) + 0.4.0 -----