Skip to content

Commit 94c7bb5

Browse files
authored
Bump MSRV to 1.60.0 (#498)
1 parent 4178868 commit 94c7bb5

File tree

17 files changed

+23
-22
lines changed

17 files changed

+23
-22
lines changed

Diff for: .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
fail-fast: false
100100
matrix:
101101
os: [ubuntu-latest, macos-latest, windows-latest]
102-
rust: [1.57.0]
102+
rust: [1.60.0]
103103

104104
name: Check / Test MSRV on ${{ matrix.os }}
105105
runs-on: ${{ matrix.os }}
@@ -139,7 +139,7 @@ jobs:
139139
- uses: actions-rs/toolchain@v1
140140
with:
141141
profile: minimal
142-
toolchain: nightly-2022-01-14
142+
toolchain: nightly-2022-09-01
143143
components: llvm-tools-preview
144144
override: true
145145

Diff for: CHANGELOG.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
**Breaking Changes**:
66

7+
- The minimum supported Rust version was bumped to **1.60.0** due to requirements from dependencies. ([#498](https://github.com/getsentry/sentry-rust/pull/498))
8+
79
**Features**:
810

911
- Add support for Profiling feature. ([#479](https://github.com/getsentry/sentry-rust/pull/479))
@@ -12,12 +14,11 @@
1214

1315
**Thank you**:
1416

15-
1617
## 0.27.0
1718

1819
**Breaking Changes**:
1920

20-
- The minium supported Rust version was bumped to **1.57.0** due to requirements from dependencies. ([#472](https://github.com/getsentry/sentry-rust/pull/472))
21+
- The minimum supported Rust version was bumped to **1.57.0** due to requirements from dependencies. ([#472](https://github.com/getsentry/sentry-rust/pull/472))
2122
- Add the `rust-version` field to the manifest. ([#473](https://github.com/getsentry/sentry-rust/pull/473))
2223
- Update to edition 2021. ([#473](https://github.com/getsentry/sentry-rust/pull/473))
2324

@@ -76,7 +77,7 @@ Features, fixes and improvements in this release have been contributed by:
7677

7778
**Breaking Changes**:
7879

79-
- The minium supported Rust version was bumped to **1.54.0** due to requirements from dependencies.
80+
- The minimum supported Rust version was bumped to **1.54.0** due to requirements from dependencies.
8081
- Updated the `sentry-actix` integration to `actix-web@4`. ([#437](https://github.com/getsentry/sentry-rust/pull/437))
8182

8283
**Features**:
@@ -124,7 +125,7 @@ Features, fixes and improvements in this release have been contributed by:
124125

125126
**Breaking Changes**:
126127

127-
- The minium supported Rust version was bumped to **1.53.0** due to requirements from dependencies.
128+
- The minimum supported Rust version was bumped to **1.53.0** due to requirements from dependencies.
128129
- The `backtrace` feature of `sentry-anyhow` is enabled by default. ([#362](https://github.com/getsentry/sentry-rust/pull/362))
129130
- The `tracing-subscriber` dependency of `sentry-tracing` has been bumped to version `0.3.x`. ([#377](https://github.com/getsentry/sentry-rust/pull/377))
130131
- `Scope::add_event_processor` now takes a generic parameter instead of a boxed function.([#380](https://github.com/getsentry/sentry-rust/pull/380))
@@ -166,7 +167,7 @@ Features, fixes and improvements in this release have been contributed by:
166167

167168
**Breaking Changes**:
168169

169-
- The minium supported Rust version was bumped to **1.46.0** due to requirements from dependencies.
170+
- The minimum supported Rust version was bumped to **1.46.0** due to requirements from dependencies.
170171

171172
**Features**:
172173

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ best API and adding new features.
9393
We currently only verify this crate against a recent version of Sentry hosted on [sentry.io](https://sentry.io/) but it
9494
should work with on-prem Sentry versions 20.6 and later.
9595

96-
The **Minimum Supported Rust Version** is currently at _1.57.0_.
96+
The **Minimum Supported Rust Version** is currently at _1.60.0_.
9797
The Sentry crates will support a _6 month_ old Rust version at time of release,
9898
and the MSRV will be increased in accordance with its dependencies.
9999

Diff for: clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.57"
1+
msrv = "1.60.0"

Diff for: sentry-actix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry client extension for actix-web 3.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
actix-web = { version = "4", default-features = false }

Diff for: sentry-anyhow/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration for anyhow.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[features]
1616
default = ["backtrace"]

Diff for: sentry-backtrace/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration and utilities for dealing with stacktraces.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
backtrace = "0.3.44"

Diff for: sentry-contexts/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Sentry integration for os, device, and rust contexts.
1111
"""
1212
build = "build.rs"
1313
edition = "2021"
14-
rust-version = "1.57"
14+
rust-version = "1.60"
1515

1616
[dependencies]
1717
sentry-core = { version = "0.27.0", path = "../sentry-core" }

Diff for: sentry-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Core sentry library used for instrumentation and integration development.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[package.metadata.docs.rs]
1616
all-features = true

Diff for: sentry-debug-images/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration that adds the list of loaded libraries to events.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
findshlibs = "=0.10.2"

Diff for: sentry-log/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration for log and env_logger crates.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
sentry-core = { version = "0.27.0", path = "../sentry-core" }

Diff for: sentry-panic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration for capturing panics.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
sentry-core = { version = "0.27.0", path = "../sentry-core" }

Diff for: sentry-slog/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration for the slog crate.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
sentry-core = { version = "0.27.0", path = "../sentry-core" }

Diff for: sentry-tower/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration for tower-based crates.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[features]
1616
http = ["http_", "pin-project", "url"]

Diff for: sentry-tracing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry integration for tracing and tracing-subscriber crates.
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414

1515
[dependencies]
1616
sentry-core = { version = "0.27.0", path = "../sentry-core", features = ["client"] }

Diff for: sentry-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Common reusable types for implementing the sentry.io protocol.
1111
"""
1212
keywords = ["sentry", "protocol"]
1313
edition = "2021"
14-
rust-version = "1.57"
14+
rust-version = "1.60"
1515

1616
[package.metadata.docs.rs]
1717
all-features = true

Diff for: sentry/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
Sentry (getsentry.com) client for rust ;)
1111
"""
1212
edition = "2021"
13-
rust-version = "1.57"
13+
rust-version = "1.60"
1414
autoexamples = true
1515

1616
# To build locally:

0 commit comments

Comments
 (0)