From cfb28996fe23a42da06a217837b9eea83b12a086 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 09:28:41 +0000 Subject: [PATCH 1/2] chore: release v0.3.3 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d7f62..02d99ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ 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/rust-lang/glob/compare/v0.3.2...v0.3.3) - 2025-08-11 + +### Other + +- Optimize memory allocations ([#147](https://github.com/rust-lang/glob/pull/147)) +- Bump the MSRV to 1.63 ([#172](https://github.com/rust-lang/glob/pull/172)) +- 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 b5fb6d5..a36a0d9 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" From 0978554a971707da21945040943cdce371abe3b8 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Mon, 11 Aug 2025 04:35:37 -0500 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02d99ad..52d7c25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,27 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.3.3](https://github.com/rust-lang/glob/compare/v0.3.2...v0.3.3) - 2025-08-11 -### Other - - Optimize memory allocations ([#147](https://github.com/rust-lang/glob/pull/147)) - Bump the MSRV to 1.63 ([#172](https://github.com/rust-lang/glob/pull/172)) -- 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] +- Fix spelling in pattern documentation ([#164](https://github.com/rust-lang/glob/pull/164)) +- Fix version numbers and some formatting ([#157](https://github.com/rust-lang/glob/pull/157)) +- Style fixes ([#137](https://github.com/rust-lang/glob/pull/137)) ## [0.3.2](https://github.com/rust-lang/glob/compare/v0.3.1...v0.3.2) - 2024-12-28