From 387a75a870c3667369be0648cbc41f7b5cea0f2e Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Thu, 19 Sep 2024 22:11:24 +0800 Subject: [PATCH] feat: bump version to 1.4.0 --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1cb2060..d5a92e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-adapter" -version = "1.3.0" +version = "1.4.0" authors = ["Eason Chai ","Cheng JIANG "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index 03f9b45..e700ebb 100644 --- a/README.md +++ b/README.md @@ -29,21 +29,21 @@ Add the following to `Cargo.toml`: For MySQL: ```toml -sqlx-adapter = { version = "1.3.0", default-features = false, features = ["mysql", "runtime-tokio-native-tls"]} +sqlx-adapter = { version = "1.4.0", default-features = false, features = ["mysql", "runtime-tokio-native-tls"]} tokio = { version = "1.1.1", features = ["macros"] } ``` For PostgreSQL: ```toml -sqlx-adapter = { version = "1.3.0", default-features = false, features = ["postgres", "runtime-tokio-native-tls"]} +sqlx-adapter = { version = "1.4.0", default-features = false, features = ["postgres", "runtime-tokio-native-tls"]} tokio = { version = "1.1.1", features = ["macros"] } ``` For SQLite: ```toml -sqlx-adapter = { version = "1.3.0", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"]} +sqlx-adapter = { version = "1.4.0", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"]} tokio = { version = "1.1.1", features = ["macros"] } ```