diff --git a/.mill-version b/.mill-version index cb911931..26696041 100644 --- a/.mill-version +++ b/.mill-version @@ -1,2 +1 @@ -0.11.7 - +0.11.7-29-f2e220 \ No newline at end of file diff --git a/Readme.adoc b/Readme.adoc index 98850aa3..4ace7270 100644 --- a/Readme.adoc +++ b/Readme.adoc @@ -2221,6 +2221,13 @@ string, int or set representations of the `os.PermSet` via: == Changelog +=== master + +* Support for Scala-Native 0.5.0 +* Dropped support for Scala 2.11.x +* Minimum version of Scala 3 increased to 3.3.1 + + [#0-9-3] === 0.9.3 - 2024-01-01 diff --git a/build.sc b/build.sc index b2c69eb2..0ec3c18d 100644 --- a/build.sc +++ b/build.sc @@ -13,18 +13,17 @@ val communityBuildDottyVersion = sys.props.get("dottyVersion").toList val scala213Version = "2.13.10" val scalaVersions = Seq( - "3.1.3", + "3.3.1", "2.12.17", scala213Version, - "2.11.12" ) ++ communityBuildDottyVersion object Deps { val acyclic = ivy"com.lihaoyi:::acyclic:0.3.11" val jna = ivy"net.java.dev.jna:jna:5.14.0" - val geny = ivy"com.lihaoyi::geny::1.0.0" - val sourcecode = ivy"com.lihaoyi::sourcecode::0.3.1" - val utest = ivy"com.lihaoyi::utest::0.8.2" + val geny = ivy"com.lihaoyi::geny::1.1.0" + val sourcecode = ivy"com.lihaoyi::sourcecode::0.4.0" + val utest = ivy"com.lihaoyi::utest::0.8.3" def scalaLibrary(version: String) = ivy"org.scala-lang:scala-library:${version}" } @@ -131,7 +130,7 @@ object os extends Module { object native extends Cross[OsNativeModule](scalaVersions) trait OsNativeModule extends OsModule with ScalaNativeModule { - def scalaNativeVersion = "0.4.5" + def scalaNativeVersion = "0.5.0" object test extends ScalaNativeTests with OsLibTestModule { def nativeLinkStubs = true }