diff --git a/README.md b/README.md
index 97b52af43..04c5ec123 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Refer to the table below to determine the appropriate version of r2dbc-mysql for
| spring-boot-starter-data-r2dbc | spring-data-r2dbc | r2dbc-spi | r2dbc-mysql(recommended) |
|--------------------------------|-------------------|---------------|------------------------------|
-| 3.0.* and above | 3.0.* and above | 1.0.0.RELEASE | io.asyncer:r2dbc-mysql:1.0.6 |
+| 3.0.* and above | 3.0.* and above | 1.0.0.RELEASE | io.asyncer:r2dbc-mysql:1.1.0 |
| 2.7.* | 1.5.* | 0.9.1.RELEASE | io.asyncer:r2dbc-mysql:0.9.7 |
| 2.6.* and below | 1.4.* and below | 0.8.6.RELEASE | dev.miku:r2dbc-mysql:0.8.2 |
@@ -59,7 +59,7 @@ However, Docker-certified images do not have these versions lower than 5.5.0, so
io.asyncer
r2dbc-mysql
- 1.0.6
+ 1.1.0
```
@@ -69,7 +69,7 @@ However, Docker-certified images do not have these versions lower than 5.5.0, so
```groovy
dependencies {
- implementation 'io.asyncer:r2dbc-mysql:1.0.6'
+ implementation 'io.asyncer:r2dbc-mysql:1.1.0'
}
```
@@ -78,7 +78,7 @@ dependencies {
```kotlin
dependencies {
// Maybe should to use `compile` instead of `implementation` on the lower version of Gradle.
- implementation("io.asyncer:r2dbc-mysql:1.0.6")
+ implementation("io.asyncer:r2dbc-mysql:1.1.0")
}
```
@@ -100,7 +100,7 @@ ConnectionFactory connectionFactory = ConnectionFactories.get(
"sslKey=%2Fpath%2Fto%2Fmysql%2Fclient-key.pem&" +
"sslCert=%2Fpath%2Fto%2Fmysql%2Fclient-cert.pem&" +
"sslKeyPassword=key-pem-password-in-here"
-)
+);
// Creating a Mono using Project Reactor
Mono connectionMono = Mono.from(connectionFactory.create());
@@ -112,7 +112,7 @@ Or use unix domain socket like following:
```java
// Minimum configuration for unix domain socket
-ConnectionFactory connectionFactory = ConnectionFactories.get("r2dbc:mysql://root@unix?unixSocket=%2Fpath%2Fto%2Fmysql.sock")
+ConnectionFactory connectionFactory = ConnectionFactories.get("r2dbc:mysql://root@unix?unixSocket=%2Fpath%2Fto%2Fmysql.sock");
Mono connectionMono = Mono.from(connectionFactory.create());
```
@@ -140,7 +140,7 @@ ConnectionFactoryOptions options = ConnectionFactoryOptions.builder()
.option(Option.valueOf("sslContextBuilderCustomizer"), "com.example.demo.MyCustomizer") // optional, default is no-op customizer
.option(Option.valueOf("zeroDate"), "use_null") // optional, default "use_null"
.option(Option.valueOf("useServerPrepareStatement"), true) // optional, default false
- .option(Option.valueOf("allowLoadLocalInfileInPath"), "/opt") // optional, default null, null means LOCAL INFILE not be allowed
+ .option(Option.valueOf("allowLoadLocalInfileInPath"), "/opt") // optional, default null, null means LOCAL INFILE not be allowed (since 1.1.0)
.option(Option.valueOf("tcpKeepAlive"), true) // optional, default false
.option(Option.valueOf("tcpNoDelay"), true) // optional, default false
.option(Option.valueOf("autodetectExtensions"), false) // optional, default false