Skip to content

Commit db33b26

Browse files
chore: update version to 0.16.2
Signed-off-by: Saurav Sharma <appdroiddeveloper@gmail.com>
1 parent 6a93e8a commit db33b26

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx_migrator"
3-
version = "0.16.1"
3+
version = "0.16.2"
44
edition = "2021"
55
authors = ["Saurav Sharma <appdroiddeveloper@gmail.com>"]
66
homepage = "https://github.com/iamsauravsharma/sqlx_migrator"

README.MD

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,25 @@ Supported Databases:
1818
Add `sqlx_migrator` to your `Cargo.toml` with the appropriate database feature:
1919

2020
```toml
21-
sqlx_migrator = { version = "0.16.1", features=["postgres"] }
21+
sqlx_migrator = { version = "0.16.2", features=["postgres"] }
2222
```
2323

2424
OR
2525

2626
```toml
27-
sqlx_migrator = { version = "0.16.1", features=["mysql"] }
27+
sqlx_migrator = { version = "0.16.2", features=["mysql"] }
2828
```
2929

3030
OR
3131

3232
```toml
33-
sqlx_migrator = { version = "0.16.1", features=["sqlite"] }
33+
sqlx_migrator = { version = "0.16.2", features=["sqlite"] }
3434
```
3535

3636
OR
3737

3838
```toml
39-
sqlx_migrator = { version = "0.16.1", features=[
39+
sqlx_migrator = { version = "0.16.2", features=[
4040
"any",
4141
# Plus any one of above database driver
4242
] }
@@ -227,7 +227,7 @@ There are two ways to perform a fake apply:
227227

228228
Use the fake option with the `Plan::apply_all()` function:
229229
```rust
230-
use sqlx_migrator::migrator::{Plan, Migrator};
230+
use sqlx_migrator::migrator::Plan;
231231

232232
migrator.run(&mut *conn, Plan::apply_all().fake(true)).await.unwrap();
233233
```

0 commit comments

Comments
 (0)