Skip to content

Commit 3749e0e

Browse files
authored
chore: prepare 0.5.7 (hotfix) release (#1394)
1 parent 0e8ffb5 commit 3749e0e

File tree

7 files changed

+25
-15
lines changed

7 files changed

+25
-15
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.7 - 2021-08-20
9+
10+
* [[#1392]] use `resolve_path` when getting path for `include_str!()` [[@abonander]]
11+
* Fixes a regression introduced by [[#1332]].
12+
* [[#1393]] avoid recursively spawning tasks in `PgListener::drop()` [[@abonander]]
13+
* Fixes a panic that occurs when `PgListener` is dropped in `async fn main()`.
14+
15+
[#1392]: https://github.com/launchbadge/sqlx/pull/1392
16+
[#1393]: https://github.com/launchbadge/sqlx/pull/1393
17+
818
## 0.5.6 - 2021-08-16
919

1020
A large bugfix release, including but not limited to:

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
@@ -18,7 +18,7 @@ members = [
1818

1919
[package]
2020
name = "sqlx"
21-
version = "0.5.6"
21+
version = "0.5.7"
2222
license = "MIT OR Apache-2.0"
2323
readme = "README.md"
2424
repository = "https://github.com/launchbadge/sqlx"
@@ -132,8 +132,8 @@ bstr = ["sqlx-core/bstr"]
132132
git2 = ["sqlx-core/git2"]
133133

134134
[dependencies]
135-
sqlx-core = { version = "0.5.6", path = "sqlx-core", default-features = false }
136-
sqlx-macros = { version = "0.5.6", path = "sqlx-macros", default-features = false, optional = true }
135+
sqlx-core = { version = "0.5.7", path = "sqlx-core", default-features = false }
136+
sqlx-macros = { version = "0.5.7", path = "sqlx-macros", default-features = false, optional = true }
137137

138138
[dev-dependencies]
139139
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.6"
3+
version = "0.5.7"
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.6", path = "..", default-features = false, features = [
30+
sqlx = { version = "0.5.7", path = "..", default-features = false, features = [
3131
"runtime-async-std-native-tls",
3232
"migrate",
3333
"any",

sqlx-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-core"
3-
version = "0.5.6"
3+
version = "0.5.7"
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"

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.6"
3+
version = "0.5.7"
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"
@@ -85,8 +85,8 @@ heck = "0.3.1"
8585
either = "1.5.3"
8686
once_cell = "1.5.2"
8787
proc-macro2 = { version = "1.0.9", default-features = false }
88-
sqlx-core = { version = "0.5.6", default-features = false, path = "../sqlx-core" }
89-
sqlx-rt = { version = "0.5.6", default-features = false, path = "../sqlx-rt" }
88+
sqlx-core = { version = "0.5.7", default-features = false, path = "../sqlx-core" }
89+
sqlx-rt = { version = "0.5.7", default-features = false, path = "../sqlx-rt" }
9090
serde = { version = "1.0.111", features = ["derive"], optional = true }
9191
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
9292
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.6"
3+
version = "0.5.7"
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)