From 655da4bf7f2917a4e205e7865426521a3e274e61 Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Sun, 14 Apr 2024 11:20:11 +0800 Subject: [PATCH] Support Scala-Native 0.5.0 (#327) --- .mill-version | 2 +- build.sc | 2 +- mill | 2 +- readme.md | 5 +++++ 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.mill-version b/.mill-version index b799a8c..2669604 100644 --- a/.mill-version +++ b/.mill-version @@ -1 +1 @@ -0.11.5 \ No newline at end of file +0.11.7-29-f2e220 \ No newline at end of file diff --git a/build.sc b/build.sc index 2772d9d..d7906bc 100644 --- a/build.sc +++ b/build.sc @@ -68,7 +68,7 @@ object utest extends Module { ivy"org.scala-native::test-interface::${scalaNativeVersion()}" ) - def scalaNativeVersion = "0.4.16" + def scalaNativeVersion = "0.5.0" object test extends ScalaNativeTests with UtestTestModule } } diff --git a/mill b/mill index 0ddd69f..6621855 100755 --- a/mill +++ b/mill @@ -3,7 +3,7 @@ # This is a wrapper script, that automatically download mill from GitHub release pages # You can give the required mill version with MILL_VERSION env variable # If no version is given, it falls back to the value of DEFAULT_MILL_VERSION -DEFAULT_MILL_VERSION=0.11.5 +DEFAULT_MILL_VERSION=0.11.7-29-f2e220 set -e diff --git a/readme.md b/readme.md index adafb04..ef6bc68 100644 --- a/readme.md +++ b/readme.md @@ -1371,6 +1371,11 @@ libraries are currently at. Changelog ========= +master +----- + +* Support for Scala-Native 0.5.0 + 0.8.2 -----