Skip to content

Commit

Permalink
Prepare for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed May 29, 2023
1 parent ef41b59 commit d71787b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
```
Expand All @@ -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)
}
```
Expand Down Expand Up @@ -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 `<projectDir>/build/generated-src/jooq/<configurationName>`. The target directory can be changed by
Expand All @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 ->
Expand Down

0 comments on commit d71787b

Please sign in to comment.