Skip to content

Commit 67f432c

Browse files
committed
chore: prepare 0.5.7 (hotfix) release
1 parent 0e8ffb5 commit 67f432c

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
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

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
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"

sqlx-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
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"

sqlx-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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"

sqlx-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
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)