Skip to content

Commit

Permalink
Merge pull request #534 from arlyon/arlyon/bump-msrv
Browse files Browse the repository at this point in the history
bump msrv (closes #532)
  • Loading branch information
jwiesler authored Apr 26, 2024
2 parents 7ef5d37 + baf0b98 commit 65ef902
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body:
id: language-version
attributes:
label: Rust version
placeholder: Our MSRV is 1.68.0
placeholder: Our MSRV is 1.74.0
validations:
required: true
- type: input
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/async-stripe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.68.0"
toolchain: "1.74.0"
override: true
- uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
name = "async-stripe"
version = "0.35.0"
description = "API bindings for the Stripe HTTP API"
rust-version = "1.68.0"
rust-version = "1.74.0"
authors = [
"Anna Baldwin <[email protected]>",
"Kevin Stenerson <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ If you don't see the specific version you are on, prefer the next available vers

## MSRV

We currently have `1.68.0` pinned in CI, so any version of rustc newer than that should work.
We currently have `1.74.0` pinned in CI, so any version of rustc newer than that should work.
If this is not the case, please open an issue. As a policy, we permit MSRV increases in non-breaking releases.
If you have a compelling usecase for bumping it, we are usually open to do so, as long as
the rust version is not too new (generally 3 releases).
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
#![allow(clippy::map_clone, clippy::large_enum_variant)]
#![warn(clippy::unwrap_used, clippy::missing_errors_doc, clippy::missing_panics_doc)]
#![forbid(unsafe_code)]
// Workaround
#![allow(ambiguous_glob_reexports)]

// Give a clear error when a required runtime error is not present. Would be better for this
// to be a fatal error preventing emission of further compile errors relating to lack of
Expand Down
1 change: 0 additions & 1 deletion src/resources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ pub use {
#[rustfmt::skip]
#[cfg(feature = "checkout")]
pub use {
checkout::checkout_session_ext::*,
generated::checkout::{
checkout_session::*,
payment_link::*,
Expand Down

0 comments on commit 65ef902

Please sign in to comment.