Skip to content
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: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ The project does _not_ follow Semantic Versioning and the changes are documented

- Variability: In the configuration editor, pressing Return/Enter anywhere will create an empty line after the configuration. Pressing Shift-Return/Enter on the header line of a configuration will create an empty line before the configuration.

### Removed
- To enable github release the usage of `listMergedPRs` script is removed for the time beeing.


## July 2025

Expand Down
11 changes: 5 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ plugins {
id 'base'
id 'maven-publish'
id 'de.itemis.mps.gradle.common' version '1.29.+'
id "com.github.breadmoirai.github-release" version "2.5.2"
id 'de.itemis.mps.gradle.launcher' version '2.7.0.+'
id "com.github.breadmoirai.github-release" version "2.4.1"
id "org.cyclonedx.bom" version "2.3.1"
}

Expand Down Expand Up @@ -532,23 +532,22 @@ publishing {

defaultTasks 'buildLanguages'

def listMergedPRs = {
/* def listMergedPRs = {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'sh', './listMergedPRs.sh'
standardOutput = stdout
}
stdout.toString()
}
} */

def currentDate = LocalDate.now().format(DateTimeFormatter.ofLocalizedDate(FormatStyle.FULL))
def prCommitsList = "${-> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")}"
//def prCommitsList = "${-> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")}"
def langLibDeps = project.configurations.languageLibs.resolvedConfiguration.lenientConfiguration.allModuleDependencies
def depsList = langLibDeps.collect {"- `${it.moduleGroup}:${it.moduleName}` : `${it.moduleVersion}`"}.join("\n")
def releaseNotes = """Automated Nighly build from ${currentDate}.

Included pull requests since last Nightly build:
${prCommitsList}


Includes dependencies:
${depsList}
Expand Down