From 81d59b62bc1f4ff7879677d31abe595e7873286b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Saparelli?= Date: Sat, 7 Jan 2023 03:14:42 +1300 Subject: [PATCH] Add to changelogs for libs (#466) --- crates/filterer/globset/CHANGELOG.md | 2 ++ crates/filterer/ignore/CHANGELOG.md | 2 ++ crates/filterer/tagged/CHANGELOG.md | 2 ++ crates/ignore-files/CHANGELOG.md | 2 ++ crates/lib/CHANGELOG.md | 8 ++++++++ crates/project-origins/CHANGELOG.md | 4 ++++ 6 files changed, 20 insertions(+) diff --git a/crates/filterer/globset/CHANGELOG.md b/crates/filterer/globset/CHANGELOG.md index e356118..9a95cef 100644 --- a/crates/filterer/globset/CHANGELOG.md +++ b/crates/filterer/globset/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +- MSRV: bump to 1.61.0 + ## v1.0.1 (2022-09-07) - Deps: update miette to 5.3.0 diff --git a/crates/filterer/ignore/CHANGELOG.md b/crates/filterer/ignore/CHANGELOG.md index fbf570b..4a7e940 100644 --- a/crates/filterer/ignore/CHANGELOG.md +++ b/crates/filterer/ignore/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +- MSRV: bump to 1.61.0 + ## v1.0.0 (2022-06-23) - Initial release as a separate crate. diff --git a/crates/filterer/tagged/CHANGELOG.md b/crates/filterer/tagged/CHANGELOG.md index 003bc21..64ca257 100644 --- a/crates/filterer/tagged/CHANGELOG.md +++ b/crates/filterer/tagged/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +- MSRV: bump to 1.61.0 + ## v0.1.1 (2022-09-07) - Deps: update miette to 5.3.0 diff --git a/crates/ignore-files/CHANGELOG.md b/crates/ignore-files/CHANGELOG.md index 9c55998..bcb1cae 100644 --- a/crates/ignore-files/CHANGELOG.md +++ b/crates/ignore-files/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +- Add `Send` bound to async functions. + ## v1.0.1 (2022-09-07) - Deps: update git-config to 0.7.1 diff --git a/crates/lib/CHANGELOG.md b/crates/lib/CHANGELOG.md index dae9dc5..4e813a8 100644 --- a/crates/lib/CHANGELOG.md +++ b/crates/lib/CHANGELOG.md @@ -2,6 +2,14 @@ ## Next (YYYY-MM-DD) +- MSRV: bump to 1.61.0 +- Deps: drop explicit dependency on `libc` on Unix. +- Internal: remove all usage of `dunce`, replaced with either Tokio's `canonicalize` (properly async) or [normalize-path](https://docs.rs/normalize-path) (performs no I/O). +- Internal: drop support code for Fuchsia. MIO already didn't support it, so it never compiled there. +- Add `#[must_use]` annotations to a bunch of functions. +- Add missing `Send` bound to `HandlerLock`. +- Fix `summarise_events_to_env` on Windows to output paths with backslashes. + ## v2.0.2 (2022-09-07) - Deps: upgrade to miette 5.3.0 diff --git a/crates/project-origins/CHANGELOG.md b/crates/project-origins/CHANGELOG.md index e557c10..0cf2ab2 100644 --- a/crates/project-origins/CHANGELOG.md +++ b/crates/project-origins/CHANGELOG.md @@ -2,6 +2,10 @@ ## Next (YYYY-MM-DD) +- Add `const` qualifier to `ProjectType::is_vcs` and `::is_soft`. +- Use Tokio's canonicalize instead of dunce. +- Add `Send` bound to `origins()` and `types()`. + ## v1.1.1 (2022-09-07) - Deps: update miette to 5.3.0