This is an automated email from the ASF dual-hosted git repository.
mpochatkin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new ba45e0055ee IGNITE-26727 Append a line separator at the end of the
igniteVersions.json (#6782)
ba45e0055ee is described below
commit ba45e0055eefc711e65643589aad74732c94efcd
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Fri Oct 24 15:55:20 2025 +0300
IGNITE-26727 Append a line separator at the end of the igniteVersions.json
(#6782)
---
modules/compatibility-tests/build.gradle | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/compatibility-tests/build.gradle
b/modules/compatibility-tests/build.gradle
index 2609769194e..928c349c111 100644
--- a/modules/compatibility-tests/build.gradle
+++ b/modules/compatibility-tests/build.gradle
@@ -196,5 +196,6 @@ tasks.register('postRelease', Copy) {
versionsFile.text =
JsonOutput.prettyPrint(JsonOutput.toJson(versionsJson))
.replace(' ', ' ') // dirty hack to make the indent 2
spaces instead of 4
+ versionsFile.append(System.lineSeparator())
}
}