File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -113,16 +113,16 @@ Download
113
113
114
114
``` scala
115
115
def ivyDeps = Agg (
116
- ivy " com.lihaoyi::sourcecode:0.4.1 " , // Scala-JVM
117
- ivy " com.lihaoyi::sourcecode::0.4.1 " // Scala.js / Scala Native
116
+ ivy " com.lihaoyi::sourcecode:0.4.2 " , // Scala-JVM
117
+ ivy " com.lihaoyi::sourcecode::0.4.2 " // Scala.js / Scala Native
118
118
)
119
119
```
120
120
121
121
** sbt**
122
122
123
123
``` scala
124
- " com.lihaoyi" %% " sourcecode" % " 0.4.1 " // Scala-JVM
125
- " com.lihaoyi" %%% " sourcecode" % " 0.4.1 " // Scala.js / Scala Native
124
+ " com.lihaoyi" %% " sourcecode" % " 0.4.2 " // Scala-JVM
125
+ " com.lihaoyi" %%% " sourcecode" % " 0.4.2 " // Scala.js / Scala Native
126
126
```
127
127
128
128
@@ -644,6 +644,12 @@ in its `.toString` method.
644
644
Version History
645
645
===============
646
646
647
+ 0.4.2
648
+ -----
649
+
650
+ * Fix NullPointerException when using sourcecode.File in Scala 3 repl ([ #161 ] ( https://github.com/com-lihaoyi/sourcecode/pull/161 ) )
651
+ * Correctly handle backticked macro keyword in Scala 3 ([ #163 ] ( https://github.com/com-lihaoyi/sourcecode/pull/163 ) )
652
+
647
653
0.4.1
648
654
-----
649
655
You can’t perform that action at this time.
0 commit comments