Skip to content

Commit

Permalink
prepared to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rssh committed Sep 5, 2021
1 parent 9a1e972 commit 948ffc1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -5,12 +5,11 @@ shim which allows to compile scala program which use [scala-async](https://githu
i.e. if you want port you program to dotty without changing source code, then you can replace scala-async dependecy to this shim for building with dotty.

```Scala
libraryDependencies += "com.github.rssh" %% "shim-scala-async-dotty-cps-async" % "0.9.2",
libraryDependencies += "com.github.rssh" %% "shim-scala-async-dotty-cps-async" % "0.9.3",
```

['--' in github project name changed to '-' ]

Supported dotty version is 3.0.1, 3.0.0

Note, that if you want bug-to-bug compatibility with scala2, than you probably want wait for official port of scala-async compiler plugin.

6 changes: 3 additions & 3 deletions build.sbt
@@ -1,16 +1,16 @@

val dottyVersion = "3.0.1"
val dottyVersion = "3.0.2"

lazy val root = project
.in(file("."))
.settings(
name := "shim--scala-async--dotty-cps-async",
version := "0.9.2",
version := "0.9.3",
scalaVersion := dottyVersion,

libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",

libraryDependencies += "com.github.rssh" %% "dotty-cps-async" % "0.9.2"
libraryDependencies += "com.github.rssh" %% "dotty-cps-async" % "0.9.3"

)

0 comments on commit 948ffc1

Please sign in to comment.