Prepare v0.1.4

This commit is contained in:
Ryan Leckey 2020-01-11 04:06:43 -08:00
parent fe98b0b612
commit 2a19ab746b
3 changed files with 9 additions and 7 deletions

View File

@ -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

10
Cargo.lock generated
View File

@ -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)",
]

View File

@ -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"