Skip to content

Commit

Permalink
Prepare version 1.8.0
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 36566b0 commit 40f288a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.8.0
// TODO: Add test for the version above
= Gradle Plugin Development Toolbox

Expand Down
6 changes: 3 additions & 3 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.8.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.145'
version = '0.0.146'
}
}

Expand All @@ -45,4 +45,4 @@ tasks.register('check') {
group = 'verification'
dependsOn(gradle.includedBuild('testProjects').task(":groovy-gradle-plugin:check"))
dependsOn(gradle.includedBuild('testProjects').task(":java-gradle-plugin:check"))
}
}
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.8.0'

dependencies {
compileOnly gradleApi(minimumGradleVersion)
Expand All @@ -27,4 +27,4 @@ sourceSets.main {
options.compilerArgs.add('-AbasePath=' + file('testProjects'))
inputs.files(fileTree('testProjects').include('**/*.java', '**/*.groovy'))
}
}
}
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.8.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.7.1'
version = '1.8.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.145";
String GRADLE_FIXTURES_VERSION = "0.0.146";
}

0 comments on commit 40f288a

Please sign in to comment.