Skip to content

Commit 63b7dd7

Browse files
author
per
committed
release 2.0.2
1 parent e7d23cb commit 63b7dd7

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ However, with some Reflection magic it is possible to do without this. This is w
88
Here is an example:
99

1010
```groovy
11-
@Grab('se.alipsa.groovy:data-utils:1.0.6')
12-
@Grab('org.postgresql:postgresql:42.4.0')
11+
@Grab('se.alipsa.groovy:data-utils:2.0.2')
12+
@Grab('org.postgresql:postgresql:42.7.8')
1313
1414
import se.alipsa.groovy.datautil.SqlUtil
1515
@@ -31,15 +31,15 @@ data-utils is available from maven central
3131

3232
Gradle:
3333
```groovy
34-
implementation "se.alipsa.groovy:data-utils:2.0.0"
34+
implementation "se.alipsa.groovy:data-utils:2.0.2"
3535
```
3636

3737
Maven:
3838
```xml
3939
<dependency>
4040
<groupId>se.alipsa.groovy</groupId>
4141
<artifactId>data-utils</artifactId>
42-
<version>2.0.0</version>
42+
<version>2.0.2</version>
4343
</dependency>
4444
```
4545

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
}
1212

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

1717
repositories {

releases.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Version history
22

3+
### 2.0.2, 2025-10-25
4+
- Fix dependency for h2 for DatabaseProvider.H2
5+
36
### 2.0.1, 2025-10-25
47
- add methods that does not require driver class name but guesses them based on the url.
58
- Set the driver class (if unset) when adding a url to connection info

src/main/groovy/se/alipsa/groovy/datautil/DataBaseProvider.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package se.alipsa.groovy.datautil
33
enum DataBaseProvider {
44

55
UNKNOWN('unknown', null, null),
6-
H2('jdbc:h2:', 'org.h2', 'h2'),
6+
H2('jdbc:h2:', 'com.h2database', 'h2'),
77
MSSQL('jdbc:sqlserver:', 'com.microsoft.sqlserver', 'mssql-jdbc'),
88
POSTGRESQL('jdbc:postgresql:', 'org.postgresql', 'postgresql'),
99
MYSQL('jdbc:mysql:', 'com.mysql', 'mysql-connector-j'),

0 commit comments

Comments
 (0)