Skip to content

Commit add304e

Browse files
committed
update MSRV
1 parent 84461ce commit add304e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ body:
5151
id: language-version
5252
attributes:
5353
label: Rust version
54-
placeholder: Our MSRV is 1.78.0
54+
placeholder: Our MSRV is 1.82.0
5555
validations:
5656
required: true
5757
- type: input

.github/workflows/async-stripe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
- 12112:12112
118118
steps:
119119
- uses: actions/checkout@v4
120-
- uses: dtolnay/rust-toolchain@1.78.0
120+
- uses: dtolnay/rust-toolchain@1.82.0
121121
- uses: actions/cache@v4
122122
with:
123123
path: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v4
2323
with:
2424
token: ${{ secrets.REPO_SCOPED_TOKEN }}
25-
- uses: dtolnay/rust-toolchain@1.78.0
25+
- uses: dtolnay/rust-toolchain@1.82.0
2626
- uses: cycjimmy/semantic-release-action@v4
2727
with:
2828
extra_plugins: |

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
name = "async-stripe"
1010
version = "0.40.0"
1111
description = "API bindings for the Stripe HTTP API"
12-
rust-version = "1.78.0"
12+
rust-version = "1.82.0"
1313
authors = [
1414
"Anna Baldwin <abaldwin@developers.wyyerd.com>",
1515
"Kevin Stenerson <kestred@users.noreply.github.com>",
@@ -160,7 +160,7 @@ actix-web = "4.2.1"
160160

161161
# MSRV PINS
162162
#
163-
# We have a few deps that have MSRVs that are higher than our own.
163+
# We have a few deps that have MSRVs that are higher than our own.
164164
# We pin them here to ensure that we can run tests on the MSRV
165165
bumpalo = ">=3.0.0, <= 3.15.0"
166166

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If you don't see the specific version you are on, prefer the next available vers
7878

7979
## MSRV
8080

81-
We currently have `1.78.0` pinned in CI, so any version of rustc newer than that should work.
81+
We currently have `1.82.0` pinned in CI, so any version of rustc newer than that should work.
8282
If this is not the case, please open an issue. As a policy, we permit MSRV increases in non-breaking releases.
8383
If you have a compelling usecase for bumping it, we are usually open to do so, as long as
8484
the rust version is not too new (generally 3 releases).

0 commit comments

Comments
 (0)