Skip to content

Commit 22f1f93

Browse files
committed
chore: prepare sqlx v0.4.0-beta.1 and sqlx-cli v0.1.0-beta.1
1 parent 41694f7 commit 22f1f93

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
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
@@ -16,7 +16,7 @@ members = [
1616

1717
[package]
1818
name = "sqlx"
19-
version = "0.4.0-pre"
19+
version = "0.4.0-beta.1"
2020
license = "MIT OR Apache-2.0"
2121
readme = "README.md"
2222
repository = "https://github.com/launchbadge/sqlx"
@@ -75,8 +75,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ]
7575
time = [ "sqlx-core/time", "sqlx-macros/time" ]
7676

7777
[dependencies]
78-
sqlx-core = { version = "0.4.0-pre", path = "sqlx-core", default-features = false }
79-
sqlx-macros = { version = "0.4.0-pre", path = "sqlx-macros", default-features = false, optional = true }
78+
sqlx-core = { version = "=0.4.0-beta.1", path = "sqlx-core", default-features = false }
79+
sqlx-macros = { version = "=0.4.0-beta.1", path = "sqlx-macros", default-features = false, optional = true }
8080

8181
[dev-dependencies]
8282
anyhow = "1.0.31"

sqlx-bench/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ postgres = ["sqlx/postgres"]
1616
criterion = "0.3.3"
1717
dotenv = "0.15.0"
1818
once_cell = "1.4"
19-
sqlx = { version = "0.4.0-pre", path = "../", default-features = false }
20-
sqlx-rt = { version = "0.1.0-pre", path = "../sqlx-rt", default-features = false }
19+
sqlx = { version = "0.4.0-beta.1", path = "../", default-features = false }
20+
sqlx-rt = { version = "0.1.1", path = "../sqlx-rt", default-features = false }
2121

2222
[[bench]]
2323
name = "pg_pool"

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.1.0-pre"
3+
version = "0.1.0-beta.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 = "0.2", features = ["macros"] }
30-
sqlx = { version = "0.4.0-pre", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] }
30+
sqlx = { version = "0.4.0-beta.1", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] }
3131
futures = "0.3"
3232
clap = "3.0.0-beta.1"
3333
chrono = "0.4"

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"
3-
version = "0.4.0-pre"
3+
version = "0.4.0-beta.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"
@@ -40,7 +40,7 @@ offline = [ "serde", "either/serde" ]
4040

4141
[dependencies]
4242
atoi = "0.3.2"
43-
sqlx-rt = { path = "../sqlx-rt", version = "0.1.0-pre" }
43+
sqlx-rt = { path = "../sqlx-rt", version = "0.1.1" }
4444
base64 = { version = "0.12.1", default-features = false, optional = true, features = [ "std" ] }
4545
bigdecimal_ = { version = "0.1.0", optional = true, package = "bigdecimal" }
4646
rust_decimal = { version = "1.6.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"
3-
version = "0.4.0-pre"
3+
version = "0.4.0-beta.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"
@@ -49,8 +49,8 @@ hex = { version = "0.4.2", optional = true }
4949
heck = "0.3.1"
5050
either = "1.5.3"
5151
proc-macro2 = { version = "1.0.9", default-features = false }
52-
sqlx-core = { version = "0.4.0-pre", default-features = false, path = "../sqlx-core" }
53-
sqlx-rt = { version = "0.1.0-pre", default-features = false, path = "../sqlx-rt" }
52+
sqlx-core = { version = "0.4.0-beta.1", default-features = false, path = "../sqlx-core" }
53+
sqlx-rt = { version = "0.1.1", default-features = false, path = "../sqlx-rt" }
5454
serde = { version = "1.0.111", optional = true }
5555
serde_json = { version = "1.0.30", features = [ "preserve_order" ], optional = true }
5656
sha2 = { version = "0.9.1", optional = true }

0 commit comments

Comments
 (0)