Skip to content

Commit

Permalink
Merge pull request #110 from japgolly/scala3rc3
Browse files Browse the repository at this point in the history
Add support 3.0.0-RC3 for in 0.2.6
  • Loading branch information
japgolly authored Apr 20, 2021
2 parents fd97e66 + 584c04c commit 6e9c8d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ SourceCode [![Build Status](https://travis-ci.org/lihaoyi/sourcecode.svg?branch=
==========

```scala
"com.lihaoyi" %% "sourcecode" % "0.2.5" // Scala-JVM
"com.lihaoyi" %%% "sourcecode" % "0.2.5" // Scala.js / Scala Native
"com.lihaoyi" %% "sourcecode" % "0.2.6" // Scala-JVM
"com.lihaoyi" %%% "sourcecode" % "0.2.6" // Scala.js / Scala Native
```

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

0.2.6
-----

- Support Scala 3.0.0-RC3

0.2.5
-----

Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion

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

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

val scalaJSVersions = for {
Expand Down

0 comments on commit 6e9c8d2

Please sign in to comment.