Skip to content

Commit

Permalink
chore: update version to 0.11.1
Browse files Browse the repository at this point in the history
Signed-off-by: Saurav Sharma <[email protected]>
  • Loading branch information
iamsauravsharma committed Jan 23, 2024
1 parent b98e9dd commit f1b0858
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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_migrator"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
authors = ["Saurav Sharma <[email protected]>"]
homepage = "https://github.com/iamsauravsharma/sqlx_migrator"
Expand Down
8 changes: 4 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ Supported Databases:
To use sqlx migrator you can configure Cargo.toml as shown below according to your requirements

```toml
sqlx_migrator = { version = "0.11.0", features=["postgres"] }
sqlx_migrator = { version = "0.11.1", features=["postgres"] }
```

OR

```toml
sqlx_migrator = { version = "0.11.0", features=["mysql"] }
sqlx_migrator = { version = "0.11.1", features=["mysql"] }
```

OR

```toml
sqlx_migrator = { version = "0.11.0", features=["sqlite"] }
sqlx_migrator = { version = "0.11.1", features=["sqlite"] }
```

OR

```toml
sqlx_migrator = { version = "0.11.0", features=[
sqlx_migrator = { version = "0.11.1", features=[
"any",
# Plus any one of above database driver
] }
Expand Down

0 comments on commit f1b0858

Please sign in to comment.