diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d7f62..df67a96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.3.3](https://github.com/rust-lang/glob/compare/v0.3.2...v0.3.3) - 2025-01-04 + +### Other + +- Fix version numbers and some formatting +- Run clippy checks in CI +- Disallow warnings in CI +- Apply remaining clippy suggestions +- Fix an instance of `unused_must_use` on Windows +- Remove useless references +- Use char rather than &str as `starts_with()` argument +- Remove useless `as usize` +- Do not deconstruct an error to rebuild it right after +- Check rustfmt in CI +- Run `cargo fmt` on existing code + ## [0.3.2](https://github.com/rust-lang/glob/compare/v0.3.1...v0.3.2) - 2024-12-28 ## What's Changed diff --git a/Cargo.toml b/Cargo.toml index 66a03e4..e4a1b54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glob" -version = "0.3.2" +version = "0.3.3" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" homepage = "https://github.com/rust-lang/glob"