From 1a0d1a5d0b2ccb50e8499c4f757efc72b98286ed Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Fri, 25 Apr 2025 10:20:08 -0500 Subject: [PATCH] Bump version to 0.11.0 --- CHANGELOG.md | 12 +++++++++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a43b2dc..eb6de42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0] - 2025-04-25 + +* Lift restriction on static lifetime for checking if an encoding is + representative of the platform (#46) +* Remove lifetime from `Encoding` and `Utf8Encoding` traits as GATs introduced + in Rust `1.65.0` enable us to relax this requirement (#47) +* Switch to `dtolnay/rust-toolchain` to fix issues where minimum version of Rust + wasn't being applied in tests (#48) + ## [0.10.0] - 2024-12-01 * Add `PlatformEncoding` and `Utf8PlatformEncoding` structs that mirror the @@ -161,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release of the library! -[Unreleased]: https://github.com/chipsenkbeil/typed-path/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/chipsenkbeil/typed-path/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/chipsenkbeil/typed-path/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/chipsenkbeil/typed-path/compare/v0.9.3...v0.10.0 [0.9.3]: https://github.com/chipsenkbeil/typed-path/compare/v0.9.2...v0.9.3 [0.9.2]: https://github.com/chipsenkbeil/typed-path/compare/v0.9.1...v0.9.2 diff --git a/Cargo.toml b/Cargo.toml index fc802f9..312ec7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "typed-path" description = "Provides typed variants of Path and PathBuf for Unix and Windows" -version = "0.10.0" +version = "0.11.0" edition = "2021" rust-version = "1.65.0" authors = ["Chip Senkbeil "] diff --git a/README.md b/README.md index 350d97d..e61f737 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Unix and Windows. ```toml [dependencies] -typed-path = "0.10" +typed-path = "0.11" ``` As of version `0.7`, this library also supports `no_std` environments that