Skip to content

Commit

Permalink
chore: prepare sqlx v0.4.0-beta.1 and sqlx-cli v0.1.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode committed Jul 27, 2020
1 parent 41694f7 commit 22f1f93
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions sqlx-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions sqlx-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions sqlx-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions sqlx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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 }
Expand Down

0 comments on commit 22f1f93

Please sign in to comment.