Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scala Native 0.5.0 Support #256

Merged
merged 2 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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