diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 6c4938f8..f4ab8813 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -20,6 +20,7 @@ categories: - "type: ci" - "type: build" change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +filter-by-commitish: true version-resolver: major: labels: diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index 28af8c93..04cb13bf 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -26,7 +26,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: commitish: ${{ steps.extract_branch.outputs.value }} - filter-by-commitish: true # Otherwise: - name: Export Gradle Properties if: steps.check_release_drafter.outputs.has_release_drafter == 'false' diff --git a/gradle.properties b/gradle.properties index 53836f77..fa888555 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -projectVersion=5.1.4 -grailsVersion=5.1.7 -springBootVersion=2.6.6 -groovyVersion=3.0.7 +projectVersion=5.2.0 +grailsVersion=5.2.0 +springBootVersion=2.7.0 +groovyVersion=3.0.11 org.gradle.caching=true org.gradle.daemon=true diff --git a/setting.gradle b/setting.gradle index 4dc5a13e..83543fe6 100644 --- a/setting.gradle +++ b/setting.gradle @@ -1,6 +1,6 @@ plugins { - id "com.gradle.enterprise" version "3.10" - id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.6.5' + id "com.gradle.enterprise" version "3.10.2" + id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.7.2' } gradleEnterprise { diff --git a/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy b/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy index 35e4add3..633e13fe 100644 --- a/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy +++ b/src/main/groovy/org/grails/gradle/plugin/core/GrailsGradlePlugin.groovy @@ -195,7 +195,7 @@ class GrailsGradlePlugin extends GroovyPlugin { } protected String getDefaultMicronautVersion() { - '3.2.7' + '3.5.1' } void addDefaultProfile(Project project, Configuration profileConfig) {