From fe3225a8b823da72eb2d509adf83e30eddeed3cd Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 16 Jan 2020 01:52:47 -0800 Subject: [PATCH] Prepare v0.2.1 --- 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 5f60f1b8..d5b4f394 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1352,21 +1352,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sqlx" -version = "0.2.0" +version = "0.2.1" 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.0", - "sqlx-macros 0.2.0", + "sqlx-core 0.2.1", + "sqlx-macros 0.2.1", "tokio 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sqlx-core" -version = "0.2.0" +version = "0.2.1" 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)", @@ -1409,13 +1409,13 @@ 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.0", + "sqlx 0.2.1", "tide 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sqlx-macros" -version = "0.2.0" +version = "0.2.1" 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)", @@ -1423,7 +1423,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.7 (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.0", + "sqlx-core 0.2.1", "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.2.9 (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 937e54b5..d4e675b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ [package] name = "sqlx" -version = "0.2.0" +version = "0.2.1" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/launchbadge/sqlx" @@ -45,8 +45,8 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ] uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ] [dependencies] -sqlx-core = { version = "0.2.0", path = "sqlx-core" } -sqlx-macros = { version = "0.2.0", path = "sqlx-macros", optional = true } +sqlx-core = { version = "0.2.1", path = "sqlx-core" } +sqlx-macros = { version = "0.2.1", path = "sqlx-macros", optional = true } [dev-dependencies] anyhow = "1.0.26" diff --git a/sqlx-core/Cargo.toml b/sqlx-core/Cargo.toml index c3709988..29b50e1d 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-core" -version = "0.2.0" +version = "0.2.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" diff --git a/sqlx-macros/Cargo.toml b/sqlx-macros/Cargo.toml index 67f719e3..2f547837 100644 --- a/sqlx-macros/Cargo.toml +++ b/sqlx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-macros" -version = "0.2.0" +version = "0.2.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" @@ -35,7 +35,7 @@ tokio = { version = "0.2", optional = true } dotenv = { version = "0.15.0", default-features = false } futures = { version = "0.3.1", default-features = false, features = ["executor"] } proc-macro2 = { version = "1.0.6", default-features = false } -sqlx = { version = "0.2.0", default-features = false, path = "../sqlx-core", package = "sqlx-core" } +sqlx = { version = "0.2.1", default-features = false, path = "../sqlx-core", package = "sqlx-core" } syn = { version = "1.0.11", default-features = false, features = [ "full" ] } quote = { version = "1.0.2", default-features = false } url = { version = "2.1.0", default-features = false }