release: v0.5.5

This commit is contained in:
Ryan Leckey 2021-05-24 09:34:34 -07:00
parent eda78a7258
commit 694a2ac478
7 changed files with 23 additions and 16 deletions

View file

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.5.5 - 2021-05-24
- [[#1242]] Fix infinite loop at compile time when using query macros [[@toshokan]]
[#1242]: https://github.com/launchbadge/sqlx/pull/1242
## 0.5.4 - 2021-05-22
- [[#1235]] Fix compilation with rustls from an eager update to webpki [[@ETCaton]]
@ -918,3 +924,4 @@ Fix docs.rs build by enabling a runtime feature in the docs.rs metadata in `Carg
[@natproach]: https://github.com/NatPRoach
[@feikesteenbergen]: https://github.com/feikesteenbergen
[@etcaton]: https://github.com/ETCaton
[@toshokan]: https://github.com/toshokan

10
Cargo.lock generated
View file

@ -2255,7 +2255,7 @@ dependencies = [
[[package]]
name = "sqlx"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"anyhow",
"async-std",
@ -2288,7 +2288,7 @@ dependencies = [
[[package]]
name = "sqlx-cli"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"anyhow",
"async-trait",
@ -2310,7 +2310,7 @@ dependencies = [
[[package]]
name = "sqlx-core"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"ahash",
"atoi",
@ -2435,7 +2435,7 @@ dependencies = [
[[package]]
name = "sqlx-macros"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"dotenv",
"either",
@ -2456,7 +2456,7 @@ dependencies = [
[[package]]
name = "sqlx-rt"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"actix-rt",
"async-native-tls",

View file

@ -17,7 +17,7 @@ members = [
[package]
name = "sqlx"
version = "0.5.4"
version = "0.5.5"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/launchbadge/sqlx"
@ -129,8 +129,8 @@ bstr = ["sqlx-core/bstr"]
git2 = ["sqlx-core/git2"]
[dependencies]
sqlx-core = { version = "0.5.4", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.5.4", path = "sqlx-macros", default-features = false, optional = true }
sqlx-core = { version = "0.5.5", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.5.5", path = "sqlx-macros", default-features = false, optional = true }
[dev-dependencies]
anyhow = "1.0.31"

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-cli"
version = "0.5.4"
version = "0.5.5"
description = "Command-line utility for SQLx, the Rust SQL toolkit."
edition = "2018"
readme = "README.md"
@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs"
[dependencies]
dotenv = "0.15"
tokio = { version = "1.0.1", features = ["macros", "rt", "rt-multi-thread"] }
sqlx = { version = "0.5.4", path = "..", default-features = false, features = [
sqlx = { version = "0.5.5", path = "..", default-features = false, features = [
"runtime-async-std-native-tls",
"migrate",
"any",

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-core"
version = "0.5.4"
version = "0.5.5"
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"
@ -100,7 +100,7 @@ offline = ["serde", "either/serde"]
[dependencies]
ahash = "0.7.2"
atoi = "0.4.0"
sqlx-rt = { path = "../sqlx-rt", version = "0.5.4" }
sqlx-rt = { path = "../sqlx-rt", version = "0.5.5" }
base64 = { version = "0.13.0", default-features = false, optional = true, features = ["std"] }
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
rust_decimal = { version = "1.8.1", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-macros"
version = "0.5.4"
version = "0.5.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"
@ -84,8 +84,8 @@ heck = "0.3.1"
either = "1.5.3"
once_cell = "1.5.2"
proc-macro2 = { version = "1.0.9", default-features = false }
sqlx-core = { version = "0.5.4", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.5.4", default-features = false, path = "../sqlx-rt" }
sqlx-core = { version = "0.5.5", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.5.5", default-features = false, path = "../sqlx-rt" }
serde = { version = "1.0.111", features = ["derive"], optional = true }
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
sha2 = { version = "0.9.1", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-rt"
version = "0.5.4"
version = "0.5.5"
repository = "https://github.com/launchbadge/sqlx"
license = "MIT OR Apache-2.0"
description = "Runtime abstraction used by SQLx, the Rust SQL toolkit. Not intended to be used directly."