From 7ee0a4b691a0df401b006e27b7b4d2ca1e3f2cb7 Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Fri, 9 Feb 2024 01:28:38 +0800 Subject: [PATCH] feat: bump version to 1.0.0 --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d51c634..7c6551f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-adapter" -version = "0.4.2" +version = "1.0.0" authors = ["Eason Chai ","Cheng JIANG "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index 3281269..0a8adf6 100644 --- a/README.md +++ b/README.md @@ -30,21 +30,21 @@ Add the following to `Cargo.toml`: For MySQL: ```toml -sqlx-adapter = { version = "0.4.2", default-features = false, features = ["mysql", "runtime-tokio-native-tls"]} +sqlx-adapter = { version = "1.0.0", default-features = false, features = ["mysql", "runtime-tokio-native-tls"]} tokio = { version = "1.1.1", features = ["macros"] } ``` For PostgreSQL: ```toml -sqlx-adapter = { version = "0.4.2", default-features = false, features = ["postgres", "runtime-tokio-native-tls"]} +sqlx-adapter = { version = "1.0.0", default-features = false, features = ["postgres", "runtime-tokio-native-tls"]} tokio = { version = "1.1.1", features = ["macros"] } ``` For SQLite: ```toml -sqlx-adapter = { version = "0.4.2", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"]} +sqlx-adapter = { version = "1.0.0", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"]} tokio = { version = "1.1.1", features = ["macros"] } ```