Skip to content

Commit

Permalink
Prepare release 1.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Lacasse <daniel@lacasse.io>
  • Loading branch information
lacasseio committed Jul 9, 2024
1 parent 3d47bd5 commit 36f919d
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.6.13
:jbake-version: 1.7.0
// 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.6.13'
version = '1.7.0'

// 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.143'
version = '0.0.144'
}
}

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.6.13'
version = '1.7.0'

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.6.13
:jbake-version: 1.7.0
= 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.6.13'
version = '1.7.0'

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.143";
String GRADLE_FIXTURES_VERSION = "0.0.144";
}

0 comments on commit 36f919d

Please sign in to comment.