diff --git a/CHANGELOG.md b/CHANGELOG.md index 0855516..37aca21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog -## [0.3.2](https://github.com/fossas/circe/releases/tag/0.3.2) +## [0.3.3](https://github.com/fossas/circe/releases/tag/0.3.3) + +_Released: 2024-12-14_ + +### 🐛 Bug Fixes + +- *(circe_lib)* Do not `info!` log symlink creation + +### 📚 Documentation + +- *(release)* Update suggested release PR name + +## [v0.3.2](https://github.com/fossas/circe/releases/tag/v0.3.2) _Released: 2024-12-14_ @@ -9,7 +21,7 @@ _Released: 2024-12-14_ - Support `--layers squash-other`, add colors to clap - Ensure crates are not published to crates.io - Configure for `cargo release` -- Prepare to release v0.3.2 ([#3]( Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> diff --git a/bin/Cargo.toml b/bin/Cargo.toml index be223f3..37ae668 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "circe" -version = "0.3.2" +version = "0.3.3" edition = "2021" authors = ["Jessica Black ", "FOSSA Inc. "] description = "Extracts and examines the contents of containers" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 7a95fef..b2db477 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "circe_lib" -version = "0.3.2" +version = "0.3.3" edition = "2021" authors = ["Jessica Black ", "FOSSA Inc. "] description = "Extracts and examines the contents of containers" diff --git a/lib/src/registry.rs b/lib/src/registry.rs index 972984b..7299927 100644 --- a/lib/src/registry.rs +++ b/lib/src/registry.rs @@ -428,7 +428,7 @@ async fn safe_symlink(entry: &Entry, dir: &Path) -> Res let rel_target = compute_symlink_target(&safe_link, &safe_target) .with_context(|| format!("compute relative path from {safe_link:?} to {safe_target:?}"))?; - tracing::info!( + debug!( ?link, ?target, ?safe_link,