Skip to content

Commit

Permalink
Merge pull request #26 from rursprung/update-to-oracle-0.6.0
Browse files Browse the repository at this point in the history
update to `oracle` 0.6
  • Loading branch information
rursprung authored May 30, 2024
2 parents 106f870 + 299d2c9 commit fbb4cc0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [1.56.0, stable]
rust: [1.60.0, stable]
features: ['', '--all-features']
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
toolchain: ${{ matrix.rust }}
components: rustfmt clippy
- name: use MSRV-compatible dependencies for MSRV check
if: ${{ matrix.os != 'stable' }}
if: ${{ matrix.rust != 'stable' }}
run: cp Cargo.lock.rust-msrv Cargo.lock
- name: build
run: cargo build ${{ matrix.features }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
### Changed
* Update to `oracle 0.6.0`
* The Minimum Supported Rust Version (MSRV) is now 1.60.0 due to changes in recent releases of
`oracle`.

## [0.6.0] - 2023-01-07
### Changed
Expand Down
26 changes: 2 additions & 24 deletions Cargo.lock.rust-msrv

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "r2d2-oracle"
version = "0.6.0"
authors = ["Ralph Ursprung <[email protected]>"]
edition = "2021"
rust-version = "1.56"
rust-version = "1.60"

description = "Oracle support for the r2d2 connection pool"
repository = "https://github.com/rursprung/r2d2-oracle"
Expand All @@ -16,4 +16,4 @@ chrono=["oracle/chrono"]

[dependencies]
r2d2 = "0.8"
oracle = "0.5.1"
oracle = "0.6"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ You may also want to consider the following alternatives to this crate, dependin
* There is an `async` ([`tokio`](https://crates.io/crates/tokio)-based) version of `r2d2`, [`bb8`](https://crates.io/crates/bb8) and a corresponding [`bb8-oracle`](https://crates.io/crates/bb8-oracle) fork of `r2d2-oracle` exists

## Minimum Supported Rust Version (MSRV)
This crate is guaranteed to compile on stable Rust 1.54 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
compile with older versions but that may change in any new patch release.

0 comments on commit fbb4cc0

Please sign in to comment.