Skip to content

Commit

Permalink
Prepare release 1.7.2
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Lacasse <[email protected]>
  • Loading branch information
lacasseio committed Jul 10, 2024
1 parent dce324b commit da5df2a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:jbake-version: 1.7.1
:jbake-version: 1.7.2
// TODO: Add test for the version above
= Gradle Plugin Development Toolbox

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
allprojects {
group = 'dev.gradleplugins'
}
version = '1.7.1'
version = '1.7.2'

// Configure javadoc
allprojects {
Expand All @@ -19,7 +19,7 @@ allprojects {
// Configure gradle-fixtures-* versions
subprojects {
if (project.name.startsWith('gradle-fixtures') || project.name.startsWith('gradle-runner-kit')) {
version = '0.0.145'
version = '0.0.146'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

description = 'Gradle plugin development plugins test fixtures.'
version = '1.7.1'
version = '1.7.2'

dependencies {
compileOnly gradleApi(minimumGradleVersion)
Expand Down
2 changes: 1 addition & 1 deletion subprojects/gradle-plugin-development/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:jbake-version: 1.7.1
:jbake-version: 1.7.2
= Gradle Plugin Development Plugins

The Gradle plugin development plugins are a set of plugins accelerating Gradle plugin development.
Expand Down
2 changes: 1 addition & 1 deletion subprojects/gradle-plugin-development/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'dev.gradleplugins.gradle-plugin-unit-test'
apply plugin: 'dev.gradleplugins.gradle-plugin-functional-test'

description = 'Gradle plugin development plugins.'
version = '1.7.1'
version = '1.7.2'

gradlePlugin {
plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ public interface DefaultDependencyVersions {
String SPOCK_FRAMEWORK_VERSION = "1.2-groovy-2.5";
@Deprecated
String GROOVY_ALL_VERSION = "2.5.2"; // Align with Spock
String GRADLE_FIXTURES_VERSION = "0.0.145";
String GRADLE_FIXTURES_VERSION = "0.0.146";
}

0 comments on commit da5df2a

Please sign in to comment.