Skip to content

Commit

Permalink
0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jodersky committed Apr 1, 2021
1 parent b7276a9 commit ee3ee5f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ val dottyCustomVersion = sys.props.get("dottyVersion")
val scala211 = "2.11.12"
val scala212 = "2.12.13"
val scala213 = "2.13.4"
val scala3 = "3.0.0-RC1"
val scala3 = "3.0.0-RC2"

val scalaVersions = scala213 :: scala212 :: scala211 :: scala3 :: dottyCustomVersion.toList
val scala2Versions = scalaVersions.filter(_.startsWith("2."))
Expand Down Expand Up @@ -49,7 +49,7 @@ trait Common extends CrossScalaModule {
}

trait CommonTestModule extends ScalaModule with TestModule {
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.7")
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.8")
def testFrameworks = Seq("utest.runner.Framework")
}

Expand Down
9 changes: 7 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ Serialize Scala data types directly to disk:
@ os.read(os.pwd / "two.json")
res5: String = "[[[1,2],[3,4]],[[5,6],[7,8]]]"
```
Or streaming file uploads over HTTP:
```scala
Expand Down Expand Up @@ -311,7 +311,7 @@ And implemented by the following libraries:

And is accepted by the following libraries:

- [Requests-Scala](https://github.com/lihaoyi/requests-scala) takes `Writable` in the
- [Requests-Scala](https://github.com/lihaoyi/requests-scala) takes `Writable` in the
`data =` field of `requests.post` and `requests.put`

- [OS-Lib](https://github.com/lihaoyi/os-lib) accepts a `Writable` in `os.write` and
Expand Down Expand Up @@ -397,6 +397,11 @@ particular usage pattern.
Changelog
=========

0.6.8
-----

- Add support for Scala 3.0.0-RC2

0.6.4
-----

Expand Down

0 comments on commit ee3ee5f

Please sign in to comment.