Skip to content

Commit b03fabf

Browse files
committed
Bump minimal supported rust version
1 parent f5ec3d3 commit b03fabf

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,11 @@ jobs:
227227
- name: Check formating
228228
run: cargo +stable fmt --all -- --check
229229
minimal_rust_version:
230-
name: Check Minimal supported rust version (1.65.0)
230+
name: Check Minimal supported rust version (1.78.0)
231231
runs-on: ubuntu-latest
232232
steps:
233233
- uses: actions/checkout@v4
234-
- uses: dtolnay/rust-toolchain@1.65.0
234+
- uses: dtolnay/rust-toolchain@1.78.0
235235
- uses: dtolnay/rust-toolchain@nightly
236236
- uses: taiki-e/install-action@cargo-hack
237237
- uses: taiki-e/install-action@cargo-minimal-versions
@@ -240,4 +240,4 @@ jobs:
240240
# has broken min-version dependencies
241241
# cannot test sqlite yet as that crate
242242
# as broken min-version dependencies as well
243-
run: cargo +stable minimal-versions check -p diesel-async --features "postgres bb8 deadpool mobc"
243+
run: cargo +1.78.0 minimal-versions check -p diesel-async --features "postgres bb8 deadpool mobc"

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
88

99
* Added type `diesel_async::pooled_connection::mobc::PooledConnection`
1010
* MySQL/MariaDB now use `CLIENT_FOUND_ROWS` capability to allow consistent behavior with PostgreSQL regarding return value of UPDATe commands.
11+
* The minimal supported rust version is now 1.78.0
1112

1213
## [0.4.1] - 2023-09-01
1314

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository = "https://github.com/weiznich/diesel_async"
1010
keywords = ["orm", "database", "sql", "async"]
1111
categories = ["database"]
1212
description = "An async extension for Diesel the safe, extensible ORM and Query Builder"
13-
rust-version = "1.65.0"
13+
rust-version = "1.78.0"
1414

1515
[dependencies]
1616
diesel = { version = "~2.1.1", default-features = false, features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]}

0 commit comments

Comments
 (0)