Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to oracle 0.6 #26

Merged
merged 2 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.