Add to changelogs for libs (#466)

This commit is contained in:
Félix Saparelli 2023-01-07 03:14:42 +13:00 committed by GitHub
parent af5742945b
commit 81d59b62bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 0 deletions

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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