Skip to content

Commit

Permalink
Merge pull request #37 from outersky/msrv-168
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede authored Dec 27, 2023
2 parents 15db0f3 + 3028a63 commit d417726
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,21 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [1.65.0, stable, nightly]
version:
- { name: msrv, version: 1.68.0 }
- { name: stable, version: stable }
- { name: nightly, version: nightly }

name: tests / ${{ matrix.version }}
name: tests / ${{ matrix.version.name }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install Rust
- name: Install Rust (${{ matrix.version.name }})
uses: actions-rust-lang/[email protected]
with:
toolchain: ${{ matrix.version }}
toolchain: ${{ matrix.version.version }}

- name: Setup MySQL
uses: mirromutth/[email protected]
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.68 due to transitive `time` dependency.

## 24.0.0

- Update `mysql` dependency to `24`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "MySQL support for the r2d2 connection pool"
repository = "https://github.com/outersky/r2d2-mysql.git"
keywords = ["mysql", "sql", "pool", "database", "r2d2"]
edition = "2021"
rust-version = "1.65"
rust-version = "1.68"

[dependencies]
r2d2 = "0.8.9"
Expand Down

0 comments on commit d417726

Please sign in to comment.