Skip to content

Commit

Permalink
Prepared release 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Jun 28, 2024
1 parent a5c6e1e commit 0b6404d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ext {
kotestVersion = '5.9.1'
jspecifyVersion = '0.3.0'
moduleName = 'net.jqwik'
jqwikVersion = '1.9.0-SNAPSHOT'
jqwikVersion = '1.9.0'
isSnapshotRelease = isSnapshotRelease(jqwikVersion)
showStandardStreams = showStandardStreams()
javaTargetVersion = javaTargetVersion()
Expand Down
4 changes: 3 additions & 1 deletion documentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ task generateUserGuideToc(type: Exec) {

workingDir "$buildDir/docs"

commandLine 'doctoc', '--maxlevel', '4', 'user-guide.md'
// For some strange reason just using 'doctoc' does no longer work with Gradle 8.7
executable "which doctoc".execute().text.trim()
args '--maxlevel', '4', 'user-guide.md'
}

task generateJavaDoc(type: Javadoc) {
Expand Down

0 comments on commit 0b6404d

Please sign in to comment.