Skip to content

Commit 6e9c8d2

Browse files
authored
Merge pull request #110 from japgolly/scala3rc3
Add support 3.0.0-RC3 for in 0.2.6
2 parents fd97e66 + 584c04c commit 6e9c8d2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ SourceCode [![Build Status](https://travis-ci.org/lihaoyi/sourcecode.svg?branch=
22
==========
33

44
```scala
5-
"com.lihaoyi" %% "sourcecode" % "0.2.5" // Scala-JVM
6-
"com.lihaoyi" %%% "sourcecode" % "0.2.5" // Scala.js / Scala Native
5+
"com.lihaoyi" %% "sourcecode" % "0.2.6" // Scala-JVM
6+
"com.lihaoyi" %%% "sourcecode" % "0.2.6" // Scala.js / Scala Native
77
```
88

99
`sourcecode` is a small Scala library for that provides common "source code"
@@ -625,6 +625,11 @@ in its `.toString` method.
625625
Version History
626626
===============
627627

628+
0.2.6
629+
-----
630+
631+
- Support Scala 3.0.0-RC3
632+
628633
0.2.5
629634
-----
630635

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion
44

55
val dottyVersions = sys.props.get("dottyVersion").toList
66

7-
val scalaVersions = "2.11.12" :: "2.12.13" :: "2.13.4" :: "3.0.0-RC2" :: dottyVersions
7+
val scalaVersions = "2.11.12" :: "2.12.13" :: "2.13.4" :: "3.0.0-RC3" :: dottyVersions
88
val scala2Versions = scalaVersions.filter(_.startsWith("2."))
99

1010
val scalaJSVersions = for {

0 commit comments

Comments
 (0)