Skip to content

Commit

Permalink
v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lecousin committed May 8, 2022
1 parent 3b1554f commit c7d6df9
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 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.0"><img src="https://img.shields.io/badge/javadoc-0.10.0-brightgreen.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://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 @@ -48,7 +48,7 @@ Features are detailed with examples in the [wiki section](https://github.com/lec
<td>Spring Boot</td>
<td>org.springframework.boot</td>
<td>spring-boot-starter-data-r2dbc</td>
<td>2.6.6</td>
<td>2.6.7</td>
<td><a href="https://search.maven.org/artifact/org.springframework.boot/spring-boot-starter-data-r2dbc"><img src="https://img.shields.io/maven-central/v/org.springframework.boot/spring-boot-starter-data-r2dbc.svg"</a></td>
</tr>
<tr>
Expand Down Expand Up @@ -101,13 +101,13 @@ Maven
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>h2</artifactId>
<version>0.10.0</version>
<version>0.10.1</version>
</dependency>
```

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

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

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

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

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

## 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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</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.0</version>
<version>0.10.1</version>
</parent>
<artifactId>test-spring-boot</artifactId>

Expand Down

0 comments on commit c7d6df9

Please sign in to comment.