From ee3ee5ff33a7c19b6a75d30ad16440dfa4df2a1e Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Thu, 1 Apr 2021 13:05:51 +0200 Subject: [PATCH] 0.6.8 --- build.sc | 4 ++-- readme.md | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/build.sc b/build.sc index e9fd1ec..93c4e9d 100644 --- a/build.sc +++ b/build.sc @@ -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.")) @@ -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") } diff --git a/readme.md b/readme.md index 14d347a..40d8838 100644 --- a/readme.md +++ b/readme.md @@ -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 @@ -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 @@ -397,6 +397,11 @@ particular usage pattern. Changelog ========= +0.6.8 +----- + +- Add support for Scala 3.0.0-RC2 + 0.6.4 -----