Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v0.3.2 #152

Merged
merged 1 commit into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 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

## What's Changed
* Add fs::symlink_metadata to detect broken symlinks by @kyoheiu in https://github.com/rust-lang/glob/pull/105
* Add support for windows verbatim disk paths by @nico-abram in https://github.com/rust-lang/glob/pull/112
* Respect `require_literal_leading_dot` option in `glob_with` method for path components by @JohnTitor in https://github.com/rust-lang/glob/pull/128
* Harden tests for symlink by @JohnTitor in https://github.com/rust-lang/glob/pull/127
* Remove "extern crate" directions from README by @zmitchell in https://github.com/rust-lang/glob/pull/131
* Add FIXME for tempdir by @JohnTitor in https://github.com/rust-lang/glob/pull/126
* Cache information about file type by @Kobzol in https://github.com/rust-lang/glob/pull/135
* Document the behaviour of ** with files by @Wilfred in https://github.com/rust-lang/glob/pull/138
* Add dependabot by @oriontvv in https://github.com/rust-lang/glob/pull/139
* Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/rust-lang/glob/pull/140
* Check only (no longer test) at the MSRV by @tgross35 in https://github.com/rust-lang/glob/pull/151
* Add release-plz for automated releases by @tgross35 in https://github.com/rust-lang/glob/pull/150

## New Contributors
* @kyoheiu made their first contribution in https://github.com/rust-lang/glob/pull/105
* @nico-abram made their first contribution in https://github.com/rust-lang/glob/pull/112
* @zmitchell made their first contribution in https://github.com/rust-lang/glob/pull/131
* @Kobzol made their first contribution in https://github.com/rust-lang/glob/pull/135
* @Wilfred made their first contribution in https://github.com/rust-lang/glob/pull/138
* @oriontvv made their first contribution in https://github.com/rust-lang/glob/pull/139
* @dependabot made their first contribution in https://github.com/rust-lang/glob/pull/140
* @tgross35 made their first contribution in https://github.com/rust-lang/glob/pull/151

**Full Changelog**: https://github.com/rust-lang/glob/compare/0.3.1...0.3.2
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "glob"
version = "0.3.1"
version = "0.3.2"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rust-lang/glob"
Expand Down
Loading