Skip to content

Commit f7203c8

Browse files
committed
preparing 0.5.8 release
1 parent ba3e373 commit f7203c8

File tree

7 files changed

+31
-11
lines changed

7 files changed

+31
-11
lines changed

CHANGELOG.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.8 - 2021-09-30
9+
10+
[A total of 23 pull requests][0.5.8-prs] were merged this release cycle! The highlights:
11+
12+
* [[#1289]] Support the `immutable` option on SQLite connections [[@djmarcin]]
13+
* [[#1295]] Support custom initial options for SQLite [[@ghassmo]]
14+
* Allows specifying custom `PRAGMA`s and overriding those set by SQLx.
15+
* [[#1345]] Initial support for Postgres `COPY FROM/TO`[[@montanalow], [@abonander]]
16+
* [[#1439]] Handle multiple waiting results correctly in MySQL [[@eagletmt]]
17+
18+
[#1289]: https://github.com/launchbadge/sqlx/pull/1289
19+
[#1295]: https://github.com/launchbadge/sqlx/pull/1295
20+
[#1345]: https://github.com/launchbadge/sqlx/pull/1345
21+
[#1439]: https://github.com/launchbadge/sqlx/pull/1439
22+
[0.5.8-prs]: https://github.com/launchbadge/sqlx/pulls?q=is%3Apr+is%3Amerged+merged%3A2021-08-21..2021-10-01
23+
824
## 0.5.7 - 2021-08-20
925

1026
* [[#1392]] use `resolve_path` when getting path for `include_str!()` [[@abonander]]
@@ -967,4 +983,8 @@ Fix docs.rs build by enabling a runtime feature in the docs.rs metadata in `Carg
967983
[@marshoepial]: https://github.com/marshoepial
968984
[@link2ext]: https://github.com/link2ext
969985
[@madadam]: https://github.com/madadam
970-
[@AtkinsChang]: https://github.com/AtkinsChang
986+
[@AtkinsChang]: https://github.com/AtkinsChang
987+
[@djmarcin]: https://github.com/djmarcin
988+
[@ghassmo]: https://github.com/ghassmo
989+
[@eagletmt]: https://github.com/eagletmt
990+
[@montanalow]: https://github.com/montanalow

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ members = [
1818

1919
[package]
2020
name = "sqlx"
21-
version = "0.5.7"
21+
version = "0.5.8"
2222
license = "MIT OR Apache-2.0"
2323
readme = "README.md"
2424
repository = "https://github.com/launchbadge/sqlx"

sqlx-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-cli"
3-
version = "0.5.7"
3+
version = "0.5.8"
44
description = "Command-line utility for SQLx, the Rust SQL toolkit."
55
edition = "2018"
66
readme = "README.md"

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.7"
3+
version = "0.5.8"
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

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

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