Skip to content

Commit cbe8207

Browse files
committed
release: 0.5.1
1 parent efccd6c commit cbe8207

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717

1818
[package]
1919
name = "sqlx"
20-
version = "0.5.0"
20+
version = "0.5.1"
2121
license = "MIT OR Apache-2.0"
2222
readme = "README.md"
2323
repository = "https://github.com/launchbadge/sqlx"
@@ -94,8 +94,8 @@ bstr = [ "sqlx-core/bstr" ]
9494
git2 = [ "sqlx-core/git2" ]
9595

9696
[dependencies]
97-
sqlx-core = { version = "0.5", path = "sqlx-core", default-features = false }
98-
sqlx-macros = { version = "0.5", path = "sqlx-macros", default-features = false, optional = true }
97+
sqlx-core = { version = "0.5.1", path = "sqlx-core", default-features = false }
98+
sqlx-macros = { version = "0.5.1", path = "sqlx-macros", default-features = false, optional = true }
9999

100100
[dev-dependencies]
101101
anyhow = "1.0.31"

sqlx-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-cli"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Command-line utility for SQLx, the Rust SQL toolkit."
55
edition = "2018"
66
readme = "README.md"
@@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs"
2727
[dependencies]
2828
dotenv = "0.15"
2929
tokio = { version = "1.0.1", features = ["macros", "rt", "rt-multi-thread"] }
30-
sqlx = { version = "0.5", path = "..", default-features = false, features = [ "runtime-async-std-native-tls", "migrate", "any", "offline" ] }
30+
sqlx = { version = "0.5.1", path = "..", default-features = false, features = [ "runtime-async-std-native-tls", "migrate", "any", "offline" ] }
3131
futures = "0.3"
3232
clap = "=3.0.0-beta.2"
3333
chrono = "0.4"

sqlx-core/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-core"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"

sqlx-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-macros"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -60,7 +60,7 @@ heck = "0.3.1"
6060
either = "1.5.3"
6161
once_cell = { version = "1.5.2", optional = true }
6262
proc-macro2 = { version = "1.0.9", default-features = false }
63-
sqlx-core = { version = "0.5", default-features = false, path = "../sqlx-core" }
63+
sqlx-core = { version = "0.5.1", default-features = false, path = "../sqlx-core" }
6464
sqlx-rt = { version = "0.3.0", default-features = false, path = "../sqlx-rt" }
6565
serde = { version = "1.0.111", features = ["derive"], optional = true }
6666
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }

0 commit comments

Comments
 (0)