Skip to content

Commit e63c8c3

Browse files
author
per
committed
release 2.0.0
1 parent 796a11c commit e63c8c3

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ plugins {
77
id 'signing'
88
id 'maven-publish'
99
id('io.github.gradle-nexus.publish-plugin') version '2.0.0'
10-
id "com.github.ben-manes.versions" version "0.51.0"
10+
id "com.github.ben-manes.versions" version "0.52.0"
1111
}
1212

1313
group = 'se.alipsa.groovy'
14-
version = '2.0.0-SNAPSHOT'
14+
version = '2.0.0'
1515
description = 'Extensions to Groovy SQL'
1616

1717
repositories {
@@ -22,15 +22,15 @@ repositories {
2222
}
2323

2424
dependencies {
25-
def groovyVersion = "4.0.25"
25+
def groovyVersion = "4.0.26"
2626
// By using compileOnly instead of implementation, the jar will not be available at runtime
2727
// and hence users can use whatever compatible version of Groovy that they want
2828
compileOnly "org.apache.groovy:groovy:${groovyVersion}"
2929
compileOnly "org.apache.groovy:groovy-sql:${groovyVersion}"
3030
//implementation 'org.apache.logging.log4j:log4j-api:2.23.1'
3131

32-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.2'
33-
//testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
32+
testImplementation 'org.junit.jupiter:junit-jupiter:5.12.0'
33+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.12.0'
3434
testImplementation 'com.h2database:h2:2.3.232'
3535
testImplementation "org.apache.groovy:groovy:${groovyVersion}"
3636
testImplementation "org.apache.groovy:groovy-sql:${groovyVersion}"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22
source ~/.sdkman/bin/sdkman-init.sh
3-
source jdk17
3+
source jdk21
44
./gradlew clean publishToSonatype closeAndReleaseSonatypeStagingRepository

releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Version history
22

3-
### 2.0.0, in progress
3+
### 2.0.0, 2025-03-12
44
- add getDependencyVersion method to ConnectionInfo
55
- ensure size in varchar(size) is minimum 1 (was 0)
66
- Improve support for Derby

0 commit comments

Comments
 (0)