Skip to content

Commit 7acd826

Browse files
authored
Merge pull request #173 from weiznich/prepare/0.5
Prepare a diesel-async 0.5 release
2 parents f8d44e0 + e28fe70 commit 7acd826

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
66

77
## [Unreleased]
88

9+
## [0.5.0] - 2024-07-19
10+
911
* Added type `diesel_async::pooled_connection::mobc::PooledConnection`
1012
* MySQL/MariaDB now use `CLIENT_FOUND_ROWS` capability to allow consistent behaviour with PostgreSQL regarding return value of UPDATe commands.
1113
* The minimal supported rust version is now 1.78.0
@@ -61,7 +63,6 @@ in the pool should be checked if they are still valid
6163

6264
* Fix prepared statement leak for the mysql backend implementation
6365

64-
6566
## 0.1.0 - 2022-09-27
6667

6768
* Initial release
@@ -75,4 +76,5 @@ in the pool should be checked if they are still valid
7576
[0.3.2]: https://github.com/weiznich/diesel_async/compare/v0.3.1...v0.3.2
7677
[0.4.0]: https://github.com/weiznich/diesel_async/compare/v0.3.2...v0.4.0
7778
[0.4.1]: https://github.com/weiznich/diesel_async/compare/v0.4.0...v0.4.1
78-
[Unreleased]: https://github.com/weiznich/diesel_async/compare/v0.4.1...main
79+
[0.5.0]: https://github.com/weiznich/diesel_async/compare/v0.4.0...v0.5.0
80+
[Unreleased]: https://github.com/weiznich/diesel_async/compare/v0.5.0...main

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ sqlite = ["diesel/sqlite", "sync-connection-wrapper"]
6161
sync-connection-wrapper = ["tokio/rt"]
6262
async-connection-wrapper = ["tokio/net"]
6363
r2d2 = ["diesel/r2d2"]
64+
bb8 = ["dep:bb8"]
65+
mobc = ["dep:mobc"]
66+
deadpool = ["dep:deadpool"]
6467

6568
[[test]]
6669
name = "integration_tests"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//!
2020
//! * [`AsyncMysqlConnection`] (enabled by the `mysql` feature)
2121
//! * [`AsyncPgConnection`] (enabled by the `postgres` feature)
22-
//! * [`SyncConnectionWrapper`] (enabled by the `sync-connection-wrapper` feature)
22+
//! * [`SyncConnectionWrapper`] (enabled by the `sync-connection-wrapper`/`sqlite` feature)
2323
//!
2424
//! Ordinary usage of `diesel-async` assumes that you just replace the corresponding sync trait
2525
//! method calls and connections with their async counterparts.

0 commit comments

Comments
 (0)