Skip to content

Commit 9d9e763

Browse files
authored
Update README (#297)
Motivation: Released 1.3.1 Modifications: Released 1.3.1 Result: up-to-date
1 parent 3bd23be commit 9d9e763

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Reactive Relational Database Connectivity MySQL Implementation
2+
23
![Maven Central](https://img.shields.io/maven-central/v/io.asyncer/r2dbc-mysql?color=blue)
34
![LICENSE](https://img.shields.io/github/license/asyncer-io/r2dbc-mysql)
45

@@ -10,15 +11,17 @@ delegate to. See [R2DBC Homepage](https://r2dbc.io).
1011
See [R2DBC MySQL wiki](https://github.com/asyncer-io/r2dbc-mysql/wiki) for more information.
1112

1213
## Spring-framework and R2DBC-SPI Compatibility
14+
1315
Refer to the table below to determine the appropriate version of r2dbc-mysql for your project.
1416

1517
| spring-boot-starter-data-r2dbc | spring-data-r2dbc | r2dbc-spi | r2dbc-mysql(recommended) |
1618
|--------------------------------|-------------------|---------------|------------------------------|
17-
| 3.0.* and above | 3.0.* and above | 1.0.0.RELEASE | io.asyncer:r2dbc-mysql:1.2.0 |
19+
| 3.0.* and above | 3.0.* and above | 1.0.0.RELEASE | io.asyncer:r2dbc-mysql:1.3.1 |
1820
| 2.7.* | 1.5.* | 0.9.1.RELEASE | io.asyncer:r2dbc-mysql:0.9.7 |
1921
| 2.6.* and below | 1.4.* and below | 0.8.6.RELEASE | dev.miku:r2dbc-mysql:0.8.2 |
2022

2123
## Supported Features
24+
2225
This driver provides the following features:
2326

2427
- [x] Unix domain socket.
@@ -37,6 +40,7 @@ This driver provides the following features:
3740
- [x] MariaDB `RETURNING` clause.
3841

3942
## Version compatibility / Integration tests states
43+
4044
![MySQL 5.5 status](https://img.shields.io/badge/MySQL%205.5-pass-blue)
4145
![MySQL 5.6 status](https://img.shields.io/badge/MySQL%205.6-pass-blue)
4246
![MySQL 5.7 status](https://img.shields.io/badge/MySQL%205.7-pass-blue)
@@ -49,7 +53,6 @@ This driver provides the following features:
4953
![MariaDB 10.6 status](https://img.shields.io/badge/MariaDB%2010.6-pass-blue)
5054
![MariaDB 10.11 status](https://img.shields.io/badge/MariaDB%2010.11-pass-blue)
5155

52-
5356
In fact, it supports lower versions, in the theory, such as 4.1, 4.0, etc.
5457

5558
However, Docker-certified images do not have these versions lower than 5.5.0, so tests are not integrated on these versions.
@@ -61,7 +64,7 @@ However, Docker-certified images do not have these versions lower than 5.5.0, so
6164
<dependency>
6265
<groupId>io.asyncer</groupId>
6366
<artifactId>r2dbc-mysql</artifactId>
64-
<version>1.2.0</version>
67+
<version>1.3.1</version>
6568
</dependency>
6669
```
6770

@@ -71,7 +74,7 @@ However, Docker-certified images do not have these versions lower than 5.5.0, so
7174

7275
```groovy
7376
dependencies {
74-
implementation 'io.asyncer:r2dbc-mysql:1.2.0'
77+
implementation 'io.asyncer:r2dbc-mysql:1.3.1'
7578
}
7679
```
7780

@@ -80,7 +83,7 @@ dependencies {
8083
```kotlin
8184
dependencies {
8285
// Maybe should to use `compile` instead of `implementation` on the lower version of Gradle.
83-
implementation("io.asyncer:r2dbc-mysql:1.2.0")
86+
implementation("io.asyncer:r2dbc-mysql:1.3.1")
8487
}
8588
```
8689

@@ -113,7 +116,7 @@ See [Usage](https://github.com/asyncer-io/r2dbc-mysql/wiki/usage) wiki for more
113116

114117
## Reporting Issues
115118

116-
The R2DBC MySQL Implementation uses GitHub as issue tracking system to record bugs and feature requests.
119+
The R2DBC MySQL Implementation uses GitHub as issue tracking system to record bugs and feature requests.
117120
If you want to raise an issue, please follow the recommendations below:
118121

119122
- Before log a bug, please search the [issue tracker](https://github.com/asyncer-io/r2dbc-mysql/issues) to see if someone has already reported the problem.
@@ -152,7 +155,7 @@ Thanks a lot for your support!
152155

153156
## Supports
154157

155-
- [R2DBC Team](https://r2dbc.io) - Thanks for their support by sharing all relevant resources around R2DBC
158+
- [R2DBC Team](https://r2dbc.io) - Thanks for their support by sharing all relevant resources around R2DBC
156159
projects.
157160

158161
[m]: https://www.mysql.com

0 commit comments

Comments
 (0)