Skip to content

Commit

Permalink
Scala Native 0.5.0 Support (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi authored Apr 15, 2024
1 parent 56c38a2 commit 82af7f5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .mill-version
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
0.11.7

0.11.7-29-f2e220
7 changes: 7 additions & 0 deletions Readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 5 additions & 6 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}

Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit 82af7f5

Please sign in to comment.