Skip to content

Commit a256610

Browse files
authored
raise MSRV to 1.82 (#719)
1 parent 978fe71 commit a256610

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ task:
1414
- name: FreeBSD 14.0 - Rust nightly
1515
env:
1616
RUST_VERSION: nightly
17-
- name: FreeBSD 14.0 - Rust 1.77.2 (MSRV)
17+
- name: FreeBSD 14.0 - Rust 1.82 (MSRV)
1818
env:
19-
RUST_VERSION: 1.77.2
19+
RUST_VERSION: 1.82
2020

2121
setup_script:
2222
- rm -f rust-toolchain.toml

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
os: [ubuntu-latest, windows-latest]
64-
rust: [stable, nightly, 1.77.2]
64+
rust: [stable, nightly, 1.82]
6565
features: [""]
6666
include:
6767
# MacOS with fsevent
@@ -72,7 +72,7 @@ jobs:
7272
rust: nightly
7373
features: "--no-default-features --features macos_fsevent"
7474
- os: macos-latest
75-
rust: 1.77.2
75+
rust: 1.82
7676
features: "--no-default-features --features macos_fsevent"
7777
# MacOS with kqueue
7878
- os: macos-latest
@@ -82,7 +82,7 @@ jobs:
8282
rust: nightly
8383
features: "--no-default-features --features macos_kqueue"
8484
- os: macos-latest
85-
rust: 1.77.2
85+
rust: 1.82
8686
features: "--no-default-features --features macos_kqueue"
8787

8888
steps:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## notify 9.0.0 (unreleased)
3+
4+
- CHANGE: raise MSRV to 1.82 **breaking**
25

36
## notify 8.2.0 (2025-08-03)
47
- FEATURE: notify user if inotify's `max_user_watches` has been reached [#698]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude = [
1313
]
1414

1515
[workspace.package]
16-
rust-version = "1.77"
16+
rust-version = "1.82"
1717
homepage = "https://github.com/notify-rs/notify"
1818
repository = "https://github.com/notify-rs/notify.git"
1919
edition = "2021"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Cross-platform filesystem notification library for Rust._
1818
- [Examples][examples]
1919
- [Changelog][changelog]
2020
- [Upgrading notify from v4](UPGRADING_V4_TO_V5.md)
21-
- Minimum supported Rust version: **1.77**
21+
- Minimum supported Rust version: **1.82**
2222

2323
As used by: [alacritty], [cargo watch], [cobalt], [deno], [docket], [mdBook],
2424
[rust-analyzer], [watchexec], [watchfiles], [xi-editor],

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.77.2"
2+
channel = "1.82"
33
profile = "minimal"
44
components = [
55
"clippy",

0 commit comments

Comments
 (0)