From 05bc3ba987b16a3da3265f859f8dc19e2d6dec5e Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Tue, 10 Mar 2020 15:40:33 -0700 Subject: [PATCH] Prepare v0.2.6 --- Cargo.lock | 14 +++++++------- Cargo.toml | 6 +++--- sqlx-core/Cargo.toml | 2 +- sqlx-macros/Cargo.toml | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f654905..83cf1a52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1454,15 +1454,15 @@ dependencies = [ [[package]] name = "sqlx" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "dotenv 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sqlx-core 0.2.5", - "sqlx-macros 0.2.4", + "sqlx-core 0.2.6", + "sqlx-macros 0.2.5", "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "trybuild 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1495,7 +1495,7 @@ dependencies = [ [[package]] name = "sqlx-core" -version = "0.2.5" +version = "0.2.6" dependencies = [ "async-native-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1539,7 +1539,7 @@ dependencies = [ "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "rust-argon2 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sqlx 0.2.5", + "sqlx 0.2.6", "tide 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1560,7 +1560,7 @@ dependencies = [ [[package]] name = "sqlx-macros" -version = "0.2.4" +version = "0.2.5" dependencies = [ "async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "dotenv 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1568,7 +1568,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sqlx-core 0.2.5", + "sqlx-core 0.2.6", "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index fff12f67..885e8832 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ [package] name = "sqlx" -version = "0.2.5" +version = "0.2.6" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/launchbadge/sqlx" @@ -47,8 +47,8 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ] uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ] [dependencies] -sqlx-core = { version = "0.2.5", path = "sqlx-core", default-features = false } -sqlx-macros = { version = "0.2.4", path = "sqlx-macros", default-features = false, optional = true } +sqlx-core = { version = "0.2.6", path = "sqlx-core", default-features = false } +sqlx-macros = { version = "0.2.5", path = "sqlx-macros", default-features = false, optional = true } [dev-dependencies] anyhow = "1.0.26" diff --git a/sqlx-core/Cargo.toml b/sqlx-core/Cargo.toml index 0cf72e78..dabb9b3a 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-core" -version = "0.2.5" +version = "0.2.6" 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" diff --git a/sqlx-macros/Cargo.toml b/sqlx-macros/Cargo.toml index d372a829..5ca33dea 100644 --- a/sqlx-macros/Cargo.toml +++ b/sqlx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-macros" -version = "0.2.4" +version = "0.2.5" 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" @@ -35,7 +35,7 @@ tokio = { version = "0.2.9", default-features = false, features = [ "rt-threaded dotenv = { version = "0.15.0", default-features = false } futures = { version = "0.3.1", default-features = false, features = [ "executor" ] } proc-macro2 = { version = "1.0.7", default-features = false } -sqlx = { version = "0.2.5", default-features = false, path = "../sqlx-core", package = "sqlx-core" } +sqlx = { version = "0.2.6", default-features = false, path = "../sqlx-core", package = "sqlx-core" } syn = { version = "1.0.13", default-features = false, features = [ "full" ] } quote = { version = "1.0.2", default-features = false } url = { version = "2.1.1", default-features = false }