From 3b91b06828306dee875ab3c86a85ea2720713fd5 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 16 Jan 2020 18:31:48 -0800 Subject: [PATCH] Prepare v0.2.2 --- Cargo.toml | 4 ++-- sqlx-core/Cargo.toml | 2 +- sqlx-macros/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e71cdd02..f4ccacff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,8 +45,8 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ] uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ] [dependencies] -sqlx-core = { version = "0.2.1", path = "sqlx-core", default-features = false } -sqlx-macros = { version = "0.2.1", path = "sqlx-macros", default-features = false, optional = true } +sqlx-core = { version = "0.2.2", path = "sqlx-core", default-features = false } +sqlx-macros = { version = "0.2.2", 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 5d0a82b2..9358b7c5 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-core" -version = "0.2.1" +version = "0.2.2" 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 3191b82d..c588b963 100644 --- a/sqlx-macros/Cargo.toml +++ b/sqlx-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-macros" -version = "0.2.1" +version = "0.2.2" 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.1", default-features = false, path = "../sqlx-core", package = "sqlx-core" } +sqlx = { version = "0.2.2", 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 }