From d71787b649f404b430143fdc42f76a94b6ac6a27 Mon Sep 17 00:00:00 2001 From: Etienne Studer Date: Mon, 29 May 2023 07:58:54 +0200 Subject: [PATCH] Prepare for next release --- README.md | 11 ++++++----- build.gradle | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b17e2944..3d29dea7 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ Note that the `org.jooq:jooq` dependency of the specified version and edition is ```groovy jooq { - version = '3.18.2' // the default (can be omitted) + version = '3.18.4' // the default (can be omitted) edition = nu.studer.gradle.jooq.JooqEdition.OSS // the default (can be omitted) } ``` @@ -125,7 +125,7 @@ jooq { ```kotlin jooq { - version.set("3.18.2") // the default (can be omitted) + version.set("3.18.4") // the default (can be omitted) edition.set(nu.studer.gradle.jooq.JooqEdition.OSS) // the default (can be omitted) } ``` @@ -162,7 +162,7 @@ buildscript { ## Configuring the jOOQ generation tool Configure the jOOQ generation tool via `jooq` extension, made available by the jOOQ plugin. The full set of configuration options when using jOOQ 3.18.x can -be seen on the jOOQ generation tool's [Configuration](https://github.com/jOOQ/jOOQ/tree/version-3.18.2/jOOQ-meta/src/main/java/org/jooq/meta/jaxb) class, or +be seen on the jOOQ generation tool's [Configuration](https://github.com/jOOQ/jOOQ/tree/version-3.18.4/jOOQ-meta/src/main/java/org/jooq/meta/jaxb) class, or on the [jOOQ XSD](https://www.jooq.org/xsd/jooq-codegen-3.18.0.xsd). By default, the generated sources are written to `/build/generated-src/jooq/`. The target directory can be changed by @@ -174,7 +174,7 @@ explicitly setting the `directory` attribute of the `target` configuration of th import org.jooq.meta.jaxb.Logging jooq { - version = '3.18.2' // default (can be omitted) + version = '3.18.4' // default (can be omitted) edition = nu.studer.gradle.jooq.JooqEdition.OSS // default (can be omitted) configurations { @@ -241,7 +241,7 @@ import org.jooq.meta.jaxb.Logging import org.jooq.meta.jaxb.Property jooq { - version.set("3.18.2") // default (can be omitted) + version.set("3.18.4") // default (can be omitted) edition.set(nu.studer.gradle.jooq.JooqEdition.OSS) // default (can be omitted) configurations { @@ -502,6 +502,7 @@ When migrating your build from jOOQ plugin 4.x to 5.x, follow these steps: # Changelog + Next - TBD ++ 8.2.1 - Avoid race condition when running multiple jOOQ tasks in parallel. Upgrade to jOOQ 3.18.4. + 8.2 - Upgrade to jOOQ 3.18.2. + 8.1 - Ensure build caching compatibility with Gradle 8. Upgrade to jOOQ 3.17.6. + 8.0 - Make Gradle 7.0 the minimum compatible version. Make Java 17 the minimum version. Upgrade to jOOQ 3.17.4. diff --git a/build.gradle b/build.gradle index 38518cff..ccfb7d07 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } group = 'nu.studer' -version = '8.2.1-DEV' +version = '8.2.1' configurations.all { Configuration c -> c.resolutionStrategy.eachDependency { DependencyResolveDetails details ->