Skip to content

Commit 031db64

Browse files
committed
Prepare a diesel_async 0.6.0 release
1 parent a9f7a35 commit 031db64

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- 0.3.x
88
- 0.4.x
99
- 0.2.x
10+
- 0.6.x
1011

1112
name: CI Tests
1213

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ All user visible changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/), as described
55
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
66

7-
## [Unreleased]
7+
## [Unreleased
8+
9+
## [0.6.0] - 2025-07-02
10+
11+
* Allow to control the statement cache size
12+
* Minimize dependencies features
13+
* Bump minimal supported mysql_async version to 0.36.0
14+
* Fixing a bug in how we tracked open transaction that could lead to dangling transactions is specific cases
815

916
## [0.5.2] - 2024-11-26
1017

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel-async"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
authors = ["Georg Semmler <[email protected]>"]
55
edition = "2021"
66
autotests = false

examples/postgres/pooled-with-rustls/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
diesel-async = { version = "0.5.0", path = "../../../", features = ["bb8", "postgres"] }
9+
diesel-async = { version = "0.6.0", path = "../../../", features = ["bb8", "postgres"] }
1010
futures-util = "0.3.21"
1111
rustls = "0.23.8"
1212
rustls-platform-verifier = "0.5.0"
@@ -18,5 +18,3 @@ tokio-postgres-rustls = "0.13.0"
1818
[dependencies.diesel]
1919
version = "2.2.0"
2020
default-features = false
21-
git = "https://github.com/diesel-rs/diesel"
22-
branch = "master"

examples/postgres/run-pending-migrations-with-rustls/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
diesel-async = { version = "0.5.0", path = "../../../", features = ["bb8", "postgres", "async-connection-wrapper"] }
9+
diesel-async = { version = "0.6.0", path = "../../../", features = ["bb8", "postgres", "async-connection-wrapper"] }
1010
futures-util = "0.3.21"
1111
rustls = "0.23.8"
1212
rustls-platform-verifier = "0.5.0"
@@ -17,10 +17,6 @@ tokio-postgres-rustls = "0.13.0"
1717
[dependencies.diesel]
1818
version = "2.2.0"
1919
default-features = false
20-
git = "https://github.com/diesel-rs/diesel"
21-
branch = "master"
2220

2321
[dependencies.diesel_migrations]
2422
version = "2.2.0"
25-
git = "https://github.com/diesel-rs/diesel"
26-
branch = "master"

examples/sync-wrapper/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,17 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
diesel-async = { version = "0.5.0", path = "../../", features = ["sync-connection-wrapper", "async-connection-wrapper"] }
9+
diesel-async = { version = "0.6.0", path = "../../", features = ["sync-connection-wrapper", "async-connection-wrapper"] }
1010
futures-util = "0.3.21"
1111
tokio = { version = "1.2.0", default-features = false, features = ["macros", "rt-multi-thread"] }
1212

1313
[dependencies.diesel]
1414
version = "2.2.0"
1515
default-features = false
1616
features = ["returning_clauses_for_sqlite_3_35"]
17-
git = "https://github.com/diesel-rs/diesel"
18-
branch = "master"
1917

2018
[dependencies.diesel_migrations]
2119
version = "2.2.0"
22-
git = "https://github.com/diesel-rs/diesel"
23-
branch = "master"
2420

2521
[features]
2622
default = ["sqlite"]

0 commit comments

Comments
 (0)