mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
chore: prepare 0.5.7 (hotfix) release (#1394)
This commit is contained in:
parent
0e8ffb564b
commit
3749e0ea37
7 changed files with 25 additions and 15 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -5,6 +5,16 @@ 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.7 - 2021-08-20
|
||||
|
||||
* [[#1392]] use `resolve_path` when getting path for `include_str!()` [[@abonander]]
|
||||
* Fixes a regression introduced by [[#1332]].
|
||||
* [[#1393]] avoid recursively spawning tasks in `PgListener::drop()` [[@abonander]]
|
||||
* Fixes a panic that occurs when `PgListener` is dropped in `async fn main()`.
|
||||
|
||||
[#1392]: https://github.com/launchbadge/sqlx/pull/1392
|
||||
[#1393]: https://github.com/launchbadge/sqlx/pull/1393
|
||||
|
||||
## 0.5.6 - 2021-08-16
|
||||
|
||||
A large bugfix release, including but not limited to:
|
||||
|
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -2290,7 +2290,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sqlx"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-std",
|
||||
|
@ -2323,7 +2323,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sqlx-cli"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
@ -2346,7 +2346,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sqlx-core"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"atoi",
|
||||
|
@ -2482,7 +2482,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sqlx-macros"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
dependencies = [
|
||||
"dotenv",
|
||||
"either",
|
||||
|
@ -2503,7 +2503,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sqlx-rt"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
dependencies = [
|
||||
"actix-rt",
|
||||
"async-native-tls",
|
||||
|
|
|
@ -18,7 +18,7 @@ members = [
|
|||
|
||||
[package]
|
||||
name = "sqlx"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
license = "MIT OR Apache-2.0"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/launchbadge/sqlx"
|
||||
|
@ -132,8 +132,8 @@ bstr = ["sqlx-core/bstr"]
|
|||
git2 = ["sqlx-core/git2"]
|
||||
|
||||
[dependencies]
|
||||
sqlx-core = { version = "0.5.6", path = "sqlx-core", default-features = false }
|
||||
sqlx-macros = { version = "0.5.6", path = "sqlx-macros", default-features = false, optional = true }
|
||||
sqlx-core = { version = "0.5.7", path = "sqlx-core", default-features = false }
|
||||
sqlx-macros = { version = "0.5.7", path = "sqlx-macros", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.31"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sqlx-cli"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
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.6", path = "..", default-features = false, features = [
|
||||
sqlx = { version = "0.5.7", path = "..", default-features = false, features = [
|
||||
"runtime-async-std-native-tls",
|
||||
"migrate",
|
||||
"any",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sqlx-core"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sqlx-macros"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
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"
|
||||
|
@ -85,8 +85,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.6", default-features = false, path = "../sqlx-core" }
|
||||
sqlx-rt = { version = "0.5.6", default-features = false, path = "../sqlx-rt" }
|
||||
sqlx-core = { version = "0.5.7", default-features = false, path = "../sqlx-core" }
|
||||
sqlx-rt = { version = "0.5.7", 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 }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sqlx-rt"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
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."
|
||||
|
|
Loading…
Reference in a new issue