Skip to content

Commit f8b378d

Browse files
committed
Release 0.6.56
1 parent 6927d6b commit f8b378d

7 files changed

Lines changed: 18 additions & 18 deletions

File tree

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -26,7 +26,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
2626

2727
[package]
2828
name = "sqlx-oldapi"
29-
version = "0.6.55"
29+
version = "0.6.56"
3030
license = "MIT OR Apache-2.0"
3131
readme = "README.md"
3232
repository = "https://github.com/lovasoa/sqlx"
@@ -126,8 +126,8 @@ bstr = ["sqlx-core/bstr"]
126126
git2 = ["sqlx-core/git2"]
127127

128128
[dependencies]
129-
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.55", path = "sqlx-core", default-features = false }
130-
sqlx-macros = { package = "sqlx-macros-oldapi", version = "0.6.55", path = "sqlx-macros", default-features = false, optional = true }
129+
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.56", path = "sqlx-core", default-features = false }
130+
sqlx-macros = { package = "sqlx-macros-oldapi", version = "0.6.56", path = "sqlx-macros", default-features = false, optional = true }
131131

132132
[dev-dependencies]
133133
anyhow = "1.0.52"

sqlx-bench/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ sqlite = ["sqlx/sqlite"]
2828
criterion = "0.8"
2929
dotenvy = "0.15.0"
3030
once_cell = "1.4"
31-
sqlx = { package = "sqlx-oldapi", version = "0.6.55", path = "../", default-features = false, features = ["macros"] }
32-
sqlx-rt = { package = "sqlx-rt-oldapi", version = "0.6.55", path = "../sqlx-rt", default-features = false }
31+
sqlx = { package = "sqlx-oldapi", version = "0.6.56", path = "../", default-features = false, features = ["macros"] }
32+
sqlx-rt = { package = "sqlx-rt-oldapi", version = "0.6.56", path = "../sqlx-rt", default-features = false }
3333

3434
chrono = "0.4.19"
3535

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.6.55"
3+
version = "0.6.56"
44
description = "Command-line utility for SQLx, the Rust SQL toolkit."
55
edition = "2021"
66
readme = "README.md"
@@ -28,7 +28,7 @@ path = "src/bin/cargo-sqlx.rs"
2828
[dependencies]
2929
dotenvy = "0.15.0"
3030
tokio = { version = "1.15.0", features = ["macros", "rt", "rt-multi-thread", "time"] }
31-
sqlx = { package = "sqlx-oldapi", version = "0.6.55", path = "..", default-features = false, features = [
31+
sqlx = { package = "sqlx-oldapi", version = "0.6.56", path = "..", default-features = false, features = [
3232
"migrate",
3333
"any",
3434
"offline",

sqlx-core/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-core-oldapi"
3-
version = "0.6.55"
3+
version = "0.6.56"
44
repository = "https://github.com/lovasoa/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -96,7 +96,7 @@ offline = ["serde", "either/serde"]
9696
[dependencies]
9797
ahash = "0.8.3"
9898
atoi = "2.0.0"
99-
sqlx-rt = { path = "../sqlx-rt", version = "0.6.55", package = "sqlx-rt-oldapi" }
99+
sqlx-rt = { path = "../sqlx-rt", version = "0.6.56", package = "sqlx-rt-oldapi" }
100100
base64 = { version = "0.22", default-features = false, optional = true, features = ["std"] }
101101
bigdecimal_ = { version = "0.4.1", optional = true, package = "bigdecimal" }
102102
rust_decimal = { version = "1.19.0", optional = true }

sqlx-macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-macros-oldapi"
3-
version = "0.6.55"
3+
version = "0.6.56"
44
repository = "https://github.com/lovasoa/sqlx"
55
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -63,8 +63,8 @@ heck = { version = "0.5" }
6363
either = "1.6.1"
6464
once_cell = "1.9.0"
6565
proc-macro2 = { version = "1.0.36", default-features = false }
66-
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.55", default-features = false, features = ["any", "aws_lc_rs", "tls12"], path = "../sqlx-core" }
67-
sqlx-rt = { version = "0.6.55", default-features = false, path = "../sqlx-rt", package = "sqlx-rt-oldapi", features = ["aws_lc_rs"] }
66+
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.56", default-features = false, features = ["any", "aws_lc_rs", "tls12"], path = "../sqlx-core" }
67+
sqlx-rt = { version = "0.6.56", default-features = false, path = "../sqlx-rt", package = "sqlx-rt-oldapi", features = ["aws_lc_rs"] }
6868
serde = { version = "1.0.132", features = ["derive"], optional = true }
6969
serde_json = { version = "1.0.73", optional = true }
7070
sha2 = { version = "0.11", optional = true }

sqlx-rt/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-rt-oldapi"
3-
version = "0.6.55"
3+
version = "0.6.56"
44
repository = "https://github.com/launchbadge/sqlx"
55
license = "MIT OR Apache-2.0"
66
description = "Runtime abstraction used by SQLx, the Rust SQL toolkit. Not intended to be used directly."

0 commit comments

Comments
 (0)