From 2a19ab746b4ea71407a972fea0f518f77d035e59 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sat, 11 Jan 2020 04:06:43 -0800 Subject: [PATCH] Prepare v0.1.4 --- CHANGELOG.md | 2 ++ Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 105cde0a3..7e923d0c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.1.4 - 2020-01-11 + ### Fixed - https://github.com/launchbadge/sqlx/issues/43 diff --git a/Cargo.lock b/Cargo.lock index 523eaebc3..4dccb1c36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1181,7 +1181,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sqlx" -version = "0.1.3" +version = "0.1.4" 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)", @@ -1189,13 +1189,13 @@ dependencies = [ "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sqlx-core 0.1.3", + "sqlx-core 0.1.4", "sqlx-macros 0.1.1", ] [[package]] name = "sqlx-core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-std 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "async-stream 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1236,7 +1236,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.1.3", + "sqlx 0.1.4", "tide 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1250,7 +1250,7 @@ dependencies = [ "proc-macro-hack 0.5.11 (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.1.3", + "sqlx-core 0.1.4", "syn 1.0.13 (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 a8a617d8e..bb7fa11fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ [package] name = "sqlx" -version = "0.1.3" +version = "0.1.4" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/launchbadge/sqlx" @@ -40,7 +40,7 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ] uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ] [dependencies] -sqlx-core = { version = "=0.1.3", path = "sqlx-core" } +sqlx-core = { version = "=0.1.4", path = "sqlx-core" } sqlx-macros = { version = "0.1.1", path = "sqlx-macros", optional = true } proc-macro-hack = { version = "0.5.11", optional = true } hex = "0.4.0"