diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d7f62..3042e25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ All notable changes to this project will be documented in this file. +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.3.3](https://github.com/unixzii/glob/compare/v0.3.2...v0.3.3) - 2025-08-01 + +### Other + +- Fix spelling in pattern documentation +- 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 +# Changelog + +All notable changes to this project will be documented in this file. + ## [Unreleased] ## [0.3.2](https://github.com/rust-lang/glob/compare/v0.3.1...v0.3.2) - 2024-12-28 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"