Skip to content

Commit

Permalink
chore: update version to 0.14.0
Browse files Browse the repository at this point in the history
Signed-off-by: Saurav Sharma <appdroiddeveloper@gmail.com>
  • Loading branch information
iamsauravsharma committed Mar 28, 2024
1 parent 55eccdc commit 5ea5578
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "sqlx_migrator"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["Saurav Sharma <appdroiddeveloper@gmail.com>"]
homepage = "https://github.com/iamsauravsharma/sqlx_migrator"
Expand Down
8 changes: 4 additions & 4 deletions README.MD
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.13.0", features=["postgres"] }
sqlx_migrator = { version = "0.14.0", features=["postgres"] }
```

OR

```toml
sqlx_migrator = { version = "0.13.0", features=["mysql"] }
sqlx_migrator = { version = "0.14.0", features=["mysql"] }
```

OR

```toml
sqlx_migrator = { version = "0.13.0", features=["sqlite"] }
sqlx_migrator = { version = "0.14.0", features=["sqlite"] }
```

OR

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

0 comments on commit 5ea5578

Please sign in to comment.