Skip to content

Commit 694a2ac

Browse files
committed
release: v0.5.5
1 parent eda78a7 commit 694a2ac

File tree

7 files changed

+23
-16
lines changed

7 files changed

+23
-16
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.5 - 2021-05-24
9+
10+
- [[#1242]] Fix infinite loop at compile time when using query macros [[@toshokan]]
11+
12+
[#1242]: https://github.com/launchbadge/sqlx/pull/1242
13+
814
## 0.5.4 - 2021-05-22
915

1016
- [[#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
918924
[@natproach]: https://github.com/NatPRoach
919925
[@feikesteenbergen]: https://github.com/feikesteenbergen
920926
[@etcaton]: https://github.com/ETCaton
927+
[@toshokan]: https://github.com/toshokan

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717

1818
[package]
1919
name = "sqlx"
20-
version = "0.5.4"
20+
version = "0.5.5"
2121
license = "MIT OR Apache-2.0"
2222
readme = "README.md"
2323
repository = "https://github.com/launchbadge/sqlx"
@@ -129,8 +129,8 @@ bstr = ["sqlx-core/bstr"]
129129
git2 = ["sqlx-core/git2"]
130130

131131
[dependencies]
132-
sqlx-core = { version = "0.5.4", path = "sqlx-core", default-features = false }
133-
sqlx-macros = { version = "0.5.4", path = "sqlx-macros", default-features = false, optional = true }
132+
sqlx-core = { version = "0.5.5", path = "sqlx-core", default-features = false }
133+
sqlx-macros = { version = "0.5.5", path = "sqlx-macros", default-features = false, optional = true }
134134

135135
[dev-dependencies]
136136
anyhow = "1.0.31"

sqlx-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-cli"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
description = "Command-line utility for SQLx, the Rust SQL toolkit."
55
edition = "2018"
66
readme = "README.md"
@@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs"
2727
[dependencies]
2828
dotenv = "0.15"
2929
tokio = { version = "1.0.1", features = ["macros", "rt", "rt-multi-thread"] }
30-
sqlx = { version = "0.5.4", path = "..", default-features = false, features = [
30+
sqlx = { version = "0.5.5", path = "..", default-features = false, features = [
3131
"runtime-async-std-native-tls",
3232
"migrate",
3333
"any",

sqlx-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-core"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -100,7 +100,7 @@ offline = ["serde", "either/serde"]
100100
[dependencies]
101101
ahash = "0.7.2"
102102
atoi = "0.4.0"
103-
sqlx-rt = { path = "../sqlx-rt", version = "0.5.4" }
103+
sqlx-rt = { path = "../sqlx-rt", version = "0.5.5" }
104104
base64 = { version = "0.13.0", default-features = false, optional = true, features = ["std"] }
105105
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
106106
rust_decimal = { version = "1.8.1", optional = true }

sqlx-macros/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-macros"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -84,8 +84,8 @@ heck = "0.3.1"
8484
either = "1.5.3"
8585
once_cell = "1.5.2"
8686
proc-macro2 = { version = "1.0.9", default-features = false }
87-
sqlx-core = { version = "0.5.4", default-features = false, path = "../sqlx-core" }
88-
sqlx-rt = { version = "0.5.4", default-features = false, path = "../sqlx-rt" }
87+
sqlx-core = { version = "0.5.5", default-features = false, path = "../sqlx-core" }
88+
sqlx-rt = { version = "0.5.5", default-features = false, path = "../sqlx-rt" }
8989
serde = { version = "1.0.111", features = ["derive"], optional = true }
9090
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
9191
sha2 = { version = "0.9.1", optional = true }

sqlx-rt/Cargo.toml

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

0 commit comments

Comments
 (0)