Skip to content

Commit

Permalink
update plugin and dependency versions (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrutsch authored Mar 25, 2024
1 parent ca970bb commit a9e9501
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changes

## unreleased

### Feature

- version updates:
- update gradle from 8.5 to 8.7
- update kotlin from 1.9.21 to 1.9.23
- update detekt from 1.23.4 to 1.23.6
- update dokka from 1.9.10 to 1.9.20
- update jooq from 3.18.6 to 3.19.6
- update kotest from 5.8.0 to 5.8.1
- update logback-classic from 1.4.11 to 1.5.3

## 2024-03-04 / 0.2.0

### Feature
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This project contains opinionated helpers and extensions of [jOOQ](https://github.com/jOOQ/jOOQ) used at Lovely Systems.

Built on **jOOQ 3.18.6**.
Built on **jOOQ 3.19.6**.

You can find the **documentation [here](https://lovelysystems.github.io/lovely-jooq/)**.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlinVersion=1.9.21
kotlinVersion=1.9.23
org.gradle.jvmargs=-Xmx2048M
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
10 changes: 5 additions & 5 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pluginManagement {
kotlin("jvm") version kotlinVersion

id("com.lovelysystems.gradle") version "1.12.0"
id("io.gitlab.arturbosch.detekt") version "1.23.4"
id("io.gitlab.arturbosch.detekt") version "1.23.6"
id("org.jetbrains.kotlinx.kover") version "0.7.5"
id("org.jetbrains.dokka") version "1.9.10"
id("org.jetbrains.dokka") version "1.9.20"
}
}

Expand Down Expand Up @@ -48,7 +48,7 @@ dependencyResolutionManagement {

// Catalogs
versionCatalogs {
val jooqVersion = "3.18.6"
val jooqVersion = "3.19.6"

create("libs") {
// Kotlin & KotlinX
Expand Down Expand Up @@ -84,15 +84,15 @@ dependencyResolutionManagement {
}

create("testLibs") {
val kotestVersion = "5.8.0"
val kotestVersion = "5.8.1"

library("kotest-runner", "io.kotest", "kotest-runner-junit5").version(kotestVersion)

library("lovely-db-testing", "com.lovelysystems", "lovely-db-testing").version("0.2.0")
library("r2dbc-postgresql", "org.postgresql", "r2dbc-postgresql").version("1.0.4.RELEASE")
library("jooq-codegen", "org.jooq", "jooq-codegen").version(jooqVersion)

library("logback", "ch.qos.logback", "logback-classic").version("1.4.11")
library("logback", "ch.qos.logback", "logback-classic").version("1.5.3")
}
}
}
Expand Down

0 comments on commit a9e9501

Please sign in to comment.