Skip to content

Commit 10cfb15

Browse files
authored
Rebootstrap on 1.0.4 (#5752)
1 parent 4eac927 commit 10cfb15

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

build.mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//| mill-version: 1.0.3-44-c2d57a
1+
//| mill-version: 1.0.4
22
//| mill-jvm-opts: ["-XX:NonProfiledCodeHeapSize=250m", "-XX:ReservedCodeCacheSize=500m"]
33
//| mill-opts: ["--jobs=0.5C"]
44

changelog.adoc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,24 @@ _The changelog below is for tagged, stable releases. For unstable releases,
1313
see the list at https://repo1.maven.org/maven2/com/lihaoyi/mill-dist_
1414

1515

16+
[#1-0-4]
17+
=== 1.0.4
18+
:version: 1.0.4
19+
:milestone-name: 1.0.4
20+
:milestone: 124
21+
:prev-version: 1.0.3
22+
_2025-08-27_
23+
24+
* Fix flicker in PromptLogger reporting of current test class running for each worker ({link-pr}/5675[#5675])
25+
* Fix Rapid shutdown/startup cycles fail to connect to the mill daemon ({link-pr}/5711[#5711])
26+
* Use custom JVM versions during Scala compilation, avoid forking for Java compilation ({link-pr}/5604[#5604])
27+
* BSP fixes ({link-pr}/5698[#5698], {link-pr}/5725[#5725]), move `out/` to `out/mill-bsp-out/` when running in BSP mode ({link-pr}/5689[#5689])
28+
* Handle uncaught errors in test frameworks ({link-pr}/5728[#5728])
29+
* Support `ScalaNativeModule.runMain` ({link-pr}/5723[#5723])
30+
* Assert task method shape in task macros to catch more mis-placed tasks hidden behind task ascriptions ({link-pr}/5729[#5729])
31+
* Lots of Android support improvements ({link-pr}/5701[#5701], {link-pr}/5700[#5700], {link-pr}/5688[#5688], {link-pr}/5678[#5678], {link-pr}/5677[#5677], {link-pr}/5674[#5674], {link-pr}/5662[#5662], {link-pr}/5656[#5656])
32+
33+
_Changes since {prev-version}:_
1634
[#1-0-3]
1735
=== 1.0.3
1836
:version: 1.0.3

integration/bsp-util/src/BspServerTestUtil.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ object BspServerTestUtil {
234234
millWorkspace.toURI.toASCIIString -> "file:///mill-workspace/",
235235
javaHome.toURI.toASCIIString.stripSuffix("/") -> "file:///java-home",
236236
os.home.toURI.toASCIIString.stripSuffix("/") -> "file:///user-home",
237-
("\"" + javaVersion + "\"") -> "\"<java-version>\"",
238237
workspacePath.toString -> "/workspace",
239238
coursierCache.toString -> "/coursier-cache",
240239
millWorkspace.toString -> "/mill-workspace",

mill-build/src/millbuild/Settings.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ object Settings {
1919
val docTags: Seq[String] = Seq(
2020
"0.11.13",
2121
"0.12.14",
22-
"1.0.3"
22+
"1.0.4"
2323
)
24-
val mimaBaseVersions: Seq[String] = Seq("1.0.0", "1.0.1", "1.0.2")
24+
val mimaBaseVersions: Seq[String] = Seq("1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4")
2525

2626
val graalvmJvmId = "graalvm-community:23.0.1"
2727
}

0 commit comments

Comments
 (0)