diff --git a/Cargo.lock b/Cargo.lock index 00bb5859..e184dbe0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2376,7 +2376,7 @@ dependencies = [ [[package]] name = "sqlx" -version = "0.4.0-pre" +version = "0.4.0-beta.1" dependencies = [ "anyhow", "async-std", @@ -2409,7 +2409,7 @@ dependencies = [ [[package]] name = "sqlx-cli" -version = "0.1.0-pre" +version = "0.1.0-beta.1" dependencies = [ "anyhow", "async-trait", @@ -2431,7 +2431,7 @@ dependencies = [ [[package]] name = "sqlx-core" -version = "0.4.0-pre" +version = "0.4.0-beta.1" dependencies = [ "atoi", "base64 0.12.3", @@ -2560,7 +2560,7 @@ dependencies = [ [[package]] name = "sqlx-macros" -version = "0.4.0-pre" +version = "0.4.0-beta.1" dependencies = [ "dotenv", "either", diff --git a/Cargo.toml b/Cargo.toml index cbc50aff..7c5133c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ members = [ [package] name = "sqlx" -version = "0.4.0-pre" +version = "0.4.0-beta.1" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/launchbadge/sqlx" @@ -75,8 +75,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ] time = [ "sqlx-core/time", "sqlx-macros/time" ] [dependencies] -sqlx-core = { version = "0.4.0-pre", path = "sqlx-core", default-features = false } -sqlx-macros = { version = "0.4.0-pre", path = "sqlx-macros", default-features = false, optional = true } +sqlx-core = { version = "=0.4.0-beta.1", path = "sqlx-core", default-features = false } +sqlx-macros = { version = "=0.4.0-beta.1", path = "sqlx-macros", default-features = false, optional = true } [dev-dependencies] anyhow = "1.0.31" diff --git a/sqlx-bench/Cargo.toml b/sqlx-bench/Cargo.toml index 1e6a690c..54984995 100644 --- a/sqlx-bench/Cargo.toml +++ b/sqlx-bench/Cargo.toml @@ -16,8 +16,8 @@ postgres = ["sqlx/postgres"] criterion = "0.3.3" dotenv = "0.15.0" once_cell = "1.4" -sqlx = { version = "0.4.0-pre", path = "../", default-features = false } -sqlx-rt = { version = "0.1.0-pre", path = "../sqlx-rt", default-features = false } +sqlx = { version = "0.4.0-beta.1", path = "../", default-features = false } +sqlx-rt = { version = "0.1.1", path = "../sqlx-rt", default-features = false } [[bench]] name = "pg_pool" diff --git a/sqlx-cli/Cargo.toml b/sqlx-cli/Cargo.toml index 98e251ae..b94ff73d 100644 --- a/sqlx-cli/Cargo.toml +++ b/sqlx-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-cli" -version = "0.1.0-pre" +version = "0.1.0-beta.1" description = "Command-line utility for SQLx, the Rust SQL toolkit." edition = "2018" readme = "README.md" @@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs" [dependencies] dotenv = "0.15" tokio = { version = "0.2", features = ["macros"] } -sqlx = { version = "0.4.0-pre", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] } +sqlx = { version = "0.4.0-beta.1", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] } futures = "0.3" clap = "3.0.0-beta.1" chrono = "0.4" diff --git a/sqlx-core/Cargo.toml b/sqlx-core/Cargo.toml index 693179e0..75058f29 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-core" -version = "0.4.0-pre" +version = "0.4.0-beta.1" repository = "https://github.com/launchbadge/sqlx" description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly." license = "MIT OR Apache-2.0" @@ -40,7 +40,7 @@ offline = [ "serde", "either/serde" ] [dependencies] atoi = "0.3.2" -sqlx-rt = { path = "../sqlx-rt", version = "0.1.0-pre" } +sqlx-rt = { path = "../sqlx-rt", version = "0.1.1" } base64 = { version = "0.12.1", default-features = false, optional = true, features = [ "std" ] } bigdecimal_ = { version = "0.1.0", optional = true, package = "bigdecimal" } rust_decimal = { version = "1.6.0", optional = true } diff --git a/sqlx-macros/Cargo.toml b/sqlx-macros/Cargo.toml index 28c7fecb..9f3ecc25 100644 --- a/sqlx-macros/Cargo.toml +++ b/sqlx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-macros" -version = "0.4.0-pre" +version = "0.4.0-beta.1" repository = "https://github.com/launchbadge/sqlx" description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly." license = "MIT OR Apache-2.0" @@ -49,8 +49,8 @@ hex = { version = "0.4.2", optional = true } heck = "0.3.1" either = "1.5.3" proc-macro2 = { version = "1.0.9", default-features = false } -sqlx-core = { version = "0.4.0-pre", default-features = false, path = "../sqlx-core" } -sqlx-rt = { version = "0.1.0-pre", default-features = false, path = "../sqlx-rt" } +sqlx-core = { version = "0.4.0-beta.1", default-features = false, path = "../sqlx-core" } +sqlx-rt = { version = "0.1.1", default-features = false, path = "../sqlx-rt" } serde = { version = "1.0.111", optional = true } serde_json = { version = "1.0.30", features = [ "preserve_order" ], optional = true } sha2 = { version = "0.9.1", optional = true }