Skip to content

Commit 2f78f80

Browse files
committed
Documentation update
1 parent 97c6933 commit 2f78f80

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

RELEASE NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Release Notes:
22

3+
## version 1.10.3, 12 Aug 2025
4+
5+
- Restored creation of the sfc deployment bundle
6+
7+
---
8+
39
## version 1.10.2, 11 Aug 2025
410

511
- Documentation update
12+
613
---
714

815
## version 1.10.1, 6 Aug 2025

build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,14 @@ buildscript {
1212
// --> applied to sfc-core, sfc-ipc, sfc-main & sfc-metrics <--
1313
set("sfc_release", version)
1414
}
15+
}
16+
17+
tasks.register<Zip>("packageDistribution") {
18+
archiveFileName.set("sfc-bundle.zip")
19+
destinationDirectory.set(layout.buildDirectory.dir("distribution-bundle"))
20+
from(layout.buildDirectory.dir("distribution"))
21+
}
22+
23+
tasks.named("assemble") {
24+
finalizedBy("packageDistribution")
1525
}

0 commit comments

Comments
 (0)