Skip to content

Commit

Permalink
feat: bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Feb 18, 2024
1 parent 2dbc494 commit fa59fc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlx-adapter"
version = "1.0.0"
version = "1.1.0"
authors = ["Eason Chai <hackerchai.com@gmail.com>","Cheng JIANG <jiang.cheng@vip.163.com>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ Add the following to `Cargo.toml`:
For MySQL:

```toml
sqlx-adapter = { version = "1.0.0", default-features = false, features = ["mysql", "runtime-tokio-native-tls"]}
sqlx-adapter = { version = "1.1.0", default-features = false, features = ["mysql", "runtime-tokio-native-tls"]}
tokio = { version = "1.1.1", features = ["macros"] }
```

For PostgreSQL:

```toml
sqlx-adapter = { version = "1.0.0", default-features = false, features = ["postgres", "runtime-tokio-native-tls"]}
sqlx-adapter = { version = "1.1.0", default-features = false, features = ["postgres", "runtime-tokio-native-tls"]}
tokio = { version = "1.1.1", features = ["macros"] }
```

For SQLite:

```toml
sqlx-adapter = { version = "1.0.0", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"]}
sqlx-adapter = { version = "1.1.0", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"]}
tokio = { version = "1.1.1", features = ["macros"] }
```

Expand Down

0 comments on commit fa59fc8

Please sign in to comment.