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
Changes from 1 commit
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
Next Next commit
update to oracle 0.6 (+ bump MSRV to 1.60)
the MSRV bump is needed because it comes from `oracle`.
rursprung committed May 30, 2024
commit 6a3c4026e727778f582ed8497812dd3aa088d7a4
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -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:
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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
@@ -3,7 +3,7 @@ name = "r2d2-oracle"
version = "0.6.0"
authors = ["Ralph Ursprung <ralph.ursprung@gmail.com>"]
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"
@@ -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
@@ -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.