prepare v0.4.0

This commit is contained in:
Ryan Leckey 2020-11-12 07:45:40 -08:00
parent 07f4b98bcc
commit 0b03dc6762
5 changed files with 10 additions and 10 deletions

2
Cargo.lock generated
View file

@ -2321,7 +2321,7 @@ dependencies = [
[[package]]
name = "sqlx-rt"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"actix-rt",
"actix-threadpool",

View file

@ -16,7 +16,7 @@ members = [
[package]
name = "sqlx"
version = "0.4.0-beta.1"
version = "0.4.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/launchbadge/sqlx"
@ -91,8 +91,8 @@ time = [ "sqlx-core/time", "sqlx-macros/time" ]
bit-vec = [ "sqlx-core/bit-vec", "sqlx-macros/bit-vec"]
[dependencies]
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 }
sqlx-core = { version = "=0.4.0", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "=0.4.0", path = "sqlx-macros", default-features = false, optional = true }
[dev-dependencies]
anyhow = "1.0.31"

View file

@ -21,7 +21,7 @@ criterion = "0.3.3"
dotenv = "0.15.0"
once_cell = "1.4"
sqlx = { version = "0.4.0-beta.1", path = "../", default-features = false }
sqlx-rt = { version = "0.1.1", path = "../sqlx-rt", default-features = false }
sqlx-rt = { version = "0.2.0", path = "../sqlx-rt", default-features = false }
[[bench]]
name = "pg_pool"

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-core"
version = "0.4.0-beta.1"
version = "0.4.0"
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"
@ -55,7 +55,7 @@ offline = [ "serde", "either/serde" ]
[dependencies]
ahash = "0.5"
atoi = "0.3.2"
sqlx-rt = { path = "../sqlx-rt", version = "0.1.1" }
sqlx-rt = { path = "../sqlx-rt", version = "0.2.0" }
base64 = { version = "0.13.0", default-features = false, optional = true, features = [ "std" ] }
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
rust_decimal = { version = "1.7.0", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-macros"
version = "0.4.0-beta.1"
version = "0.4.0"
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"
@ -59,8 +59,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-beta.1", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.1.1", default-features = false, path = "../sqlx-rt" }
sqlx-core = { version = "0.4.0", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.2.0", 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 }