Skip to content

Commit

Permalink
Raise MSRV to 1.60
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaust authored and 0xpr03 committed May 15, 2023
1 parent af9feef commit 7b89553
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
version:
- 1.56.0 # MSRV
- 1.60.0 # MSRV
- stable
- nightly
os:
Expand All @@ -38,19 +38,19 @@ jobs:
rustup override set ${{ matrix.version }}
- name: check build serde,macos_kqueue for examples
if: matrix.version != '1.56.0' && matrix.os == 'macos-latest'
if: matrix.version != '1.60.0' && matrix.os == 'macos-latest'
run: cargo check -p notify --features=serde,macos_kqueue --examples

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

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

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

- name: check build without crossbeam/default features
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16`

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

## debouncer-full 0.1.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ _Cross-platform filesystem notification library for Rust._
- [Crate page][crate]
- [Changelog][changelog]
- [Upgrading from v4](UPGRADING_V4_TO_V5.md)
- Earliest supported Rust version: **1.56**
- Earliest supported Rust version: **1.60**
- **incomplete [Guides and in-depth docs][wiki]**

As used by: [alacritty], [cargo watch], [cobalt], [docket], [mdBook], [pax],
Expand Down
2 changes: 1 addition & 1 deletion file-id/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "file-id"
version = "0.1.0"
rust-version = "1.56"
rust-version = "1.60"
description = "Platform independent file id library"
documentation = "https://docs.rs/notify"
homepage = "https://github.com/notify-rs/notify"
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-full/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "notify-debouncer-full"
version = "0.1.0"
edition = "2021"
rust-version = "1.56"
rust-version = "1.60"
description = "notify event debouncer optimized for ease of use"
documentation = "https://docs.rs/notify-debouncer-full"
homepage = "https://github.com/notify-rs/notify"
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-mini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "notify-debouncer-mini"
version = "0.2.1"
edition = "2021"
rust-version = "1.56"
rust-version = "1.60"
description = "notify mini debouncer for events"
documentation = "https://docs.rs/notify-debouncer-mini"
homepage = "https://github.com/notify-rs/notify"
Expand Down
2 changes: 1 addition & 1 deletion notify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "notify"
version = "6.0.0"
rust-version = "1.56"
rust-version = "1.60"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
homepage = "https://github.com/notify-rs/notify"
Expand Down

0 comments on commit 7b89553

Please sign in to comment.