Skip to content

Commit 6c39b1d

Browse files
committed
0.10.2
1 parent 48b5ad2 commit 6c39b1d

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# lc-spring-data-r2dbc
22

33
<a href="https://search.maven.org/artifact/net.lecousin.reactive-data-relational/core"><img src="https://img.shields.io/maven-central/v/net.lecousin.reactive-data-relational/core.svg"></a> &nbsp;
4-
<a href="https://www.javadoc.io/doc/net.lecousin.reactive-data-relational/core/0.10.1"><img src="https://img.shields.io/badge/javadoc-0.10.1-brightgreen.svg"></a> &nbsp;
4+
<a href="https://www.javadoc.io/doc/net.lecousin.reactive-data-relational/core/0.10.2"><img src="https://img.shields.io/badge/javadoc-0.10.2-brightgreen.svg"></a> &nbsp;
55
<a href="https://github.com/lecousin/lc-spring-data-r2dbc/actions/workflows/maven.yml?query=branch%3Amaster"><img src="https://github.com/lecousin/lc-spring-data-r2dbc/actions/workflows/maven.yml/badge.svg?branch=master"></a>
66
<br/>
77
<a href="https://codecov.io/gh/lecousin/lc-spring-data-r2dbc/branch/master"><img src="https://codecov.io/gh/lecousin/lc-spring-data-r2dbc/branch/master/graph/badge.svg"></a> &nbsp;
@@ -101,13 +101,13 @@ Maven
101101
<dependency>
102102
<groupId>net.lecousin.reactive-data-relational</groupId>
103103
<artifactId>h2</artifactId>
104-
<version>0.10.1</version>
104+
<version>0.10.2</version>
105105
</dependency>
106106
```
107107

108108
Gradle
109109
```groovy
110-
implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.10.1'
110+
implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.10.2'
111111
```
112112

113113
### Postgres
@@ -117,13 +117,13 @@ Maven
117117
<dependency>
118118
<groupId>net.lecousin.reactive-data-relational</groupId>
119119
<artifactId>postgres</artifactId>
120-
<version>0.10.1</version>
120+
<version>0.10.2</version>
121121
</dependency>
122122
```
123123

124124
Gradle
125125
```groovy
126-
implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.10.1'
126+
implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.10.2'
127127
```
128128

129129
### MySql
@@ -133,13 +133,13 @@ Maven
133133
<dependency>
134134
<groupId>net.lecousin.reactive-data-relational</groupId>
135135
<artifactId>mysql</artifactId>
136-
<version>0.10.1</version>
136+
<version>0.10.2</version>
137137
</dependency>
138138
```
139139

140140
Gradle
141141
```groovy
142-
implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.10.1'
142+
implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.10.2'
143143
```
144144

145145
## Spring Boot configuration
@@ -281,7 +281,7 @@ In order to make sure the initializer is launched before any test class is loade
281281
<dependency>
282282
<groupId>net.lecousin.reactive-data-relational</groupId>
283283
<artifactId>test-junit-5</artifactId>
284-
<version>0.10.1</version>
284+
<version>0.10.2</version>
285285
<scope>test</scope>
286286
</dependency>
287287
```

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>core</artifactId>
99

h2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>h2</artifactId>
99

jacoco-report-aggregate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>jacoco-report-aggregate</artifactId>
99
<packaging>pom</packaging>

mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>mysql</artifactId>
99

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>net.lecousin.reactive-data-relational</groupId>
44
<artifactId>parent</artifactId>
5-
<version>0.10.1</version>
5+
<version>0.10.2</version>
66
<packaging>pom</packaging>
77

88
<name>net.lecousin.reactive-data-relational aka lc-spring-data-r2dbc</name>

postgres/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>postgres</artifactId>
99

test-junit-5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>test-junit-5</artifactId>
99

test-spring-boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin.reactive-data-relational</groupId>
55
<artifactId>parent</artifactId>
6-
<version>0.10.1</version>
6+
<version>0.10.2</version>
77
</parent>
88
<artifactId>test-spring-boot</artifactId>
99

0 commit comments

Comments
 (0)