Skip to content

Commit 7b89553

Browse files
dfaust0xpr03
authored andcommitted
Raise MSRV to 1.60
1 parent af9feef commit 7b89553

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
version:
21-
- 1.56.0 # MSRV
21+
- 1.60.0 # MSRV
2222
- stable
2323
- nightly
2424
os:
@@ -38,19 +38,19 @@ jobs:
3838
rustup override set ${{ matrix.version }}
3939
4040
- name: check build serde,macos_kqueue for examples
41-
if: matrix.version != '1.56.0' && matrix.os == 'macos-latest'
41+
if: matrix.version != '1.60.0' && matrix.os == 'macos-latest'
4242
run: cargo check -p notify --features=serde,macos_kqueue --examples
4343

4444
- name: check build serde,macos_kqueue
45-
if: matrix.version == '1.56.0' && matrix.os == 'macos-latest'
45+
if: matrix.version == '1.60.0' && matrix.os == 'macos-latest'
4646
run: cargo check -p notify --features=serde,macos_kqueue
4747

4848
- name: check build serde for examples
49-
if: matrix.version != '1.56.0' && matrix.os != 'macos-latest'
49+
if: matrix.version != '1.60.0' && matrix.os != 'macos-latest'
5050
run: cargo check -p notify --features=serde --examples
5151

5252
- name: check build serde
53-
if: matrix.version == '1.56.0' && matrix.os != 'macos-latest'
53+
if: matrix.version == '1.60.0' && matrix.os != 'macos-latest'
5454
run: cargo check --features=serde
5555

5656
- name: check build without crossbeam/default features

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16`
66

77
- CHANGE: files and directories moved into a watch folder on Linux will now be reported as `rename to` events instead of `create` events
88
- CHANGE: on Linux `rename from` events will be emitted immediately without starting a new thread
9+
- CHANGE: raise MSRV to 1.60
910

1011
## debouncer-full 0.1.0
1112

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Cross-platform filesystem notification library for Rust._
1818
- [Crate page][crate]
1919
- [Changelog][changelog]
2020
- [Upgrading from v4](UPGRADING_V4_TO_V5.md)
21-
- Earliest supported Rust version: **1.56**
21+
- Earliest supported Rust version: **1.60**
2222
- **incomplete [Guides and in-depth docs][wiki]**
2323

2424
As used by: [alacritty], [cargo watch], [cobalt], [docket], [mdBook], [pax],

file-id/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "file-id"
33
version = "0.1.0"
4-
rust-version = "1.56"
4+
rust-version = "1.60"
55
description = "Platform independent file id library"
66
documentation = "https://docs.rs/notify"
77
homepage = "https://github.com/notify-rs/notify"

notify-debouncer-full/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "notify-debouncer-full"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.56"
5+
rust-version = "1.60"
66
description = "notify event debouncer optimized for ease of use"
77
documentation = "https://docs.rs/notify-debouncer-full"
88
homepage = "https://github.com/notify-rs/notify"

notify-debouncer-mini/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "notify-debouncer-mini"
33
version = "0.2.1"
44
edition = "2021"
5-
rust-version = "1.56"
5+
rust-version = "1.60"
66
description = "notify mini debouncer for events"
77
documentation = "https://docs.rs/notify-debouncer-mini"
88
homepage = "https://github.com/notify-rs/notify"

notify/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "notify"
33
version = "6.0.0"
4-
rust-version = "1.56"
4+
rust-version = "1.60"
55
description = "Cross-platform filesystem notification library"
66
documentation = "https://docs.rs/notify"
77
homepage = "https://github.com/notify-rs/notify"

0 commit comments

Comments
 (0)