Skip to content

Commit

Permalink
0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lecousin committed Jun 6, 2022
1 parent 48b5ad2 commit 6c39b1d
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# lc-spring-data-r2dbc

<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;
<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;
<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;
<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>
<br/>
<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;
Expand Down Expand Up @@ -101,13 +101,13 @@ Maven
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>h2</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</dependency>
```

Gradle
```groovy
implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.10.1'
implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.10.2'
```

### Postgres
Expand All @@ -117,13 +117,13 @@ Maven
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>postgres</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</dependency>
```

Gradle
```groovy
implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.10.1'
implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.10.2'
```

### MySql
Expand All @@ -133,13 +133,13 @@ Maven
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>mysql</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</dependency>
```

Gradle
```groovy
implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.10.1'
implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.10.2'
```

## Spring Boot configuration
Expand Down Expand Up @@ -281,7 +281,7 @@ In order to make sure the initializer is launched before any test class is loade
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>test-junit-5</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>core</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion h2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>h2</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jacoco-report-aggregate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>jacoco-report-aggregate</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>mysql</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
<packaging>pom</packaging>

<name>net.lecousin.reactive-data-relational aka lc-spring-data-r2dbc</name>
Expand Down
2 changes: 1 addition & 1 deletion postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>postgres</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion test-junit-5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>test-junit-5</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion test-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</parent>
<artifactId>test-spring-boot</artifactId>

Expand Down

0 comments on commit 6c39b1d

Please sign in to comment.