Skip to content

Commit c54ab27

Browse files
committed
merge: resolve conflicts with main
2 parents c4e7334 + 16fcefd commit c54ab27

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [Unreleased]
5+
## [1.1.2] - 2026-03-18
66

77
### Fixed
88

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-workspace-inheritance-check"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
edition = "2024"
55
authors = ["Rodrigo Quelhas"]
66
description = "Check and fix workspace dependency inheritance hygiene in Cargo workspaces"

src/workspace.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pub struct MemberDep {
2828
pub(crate) const DEP_SECTIONS: [&str; 3] =
2929
["dependencies", "dev-dependencies", "build-dependencies"];
3030

31+
3132
pub(crate) fn read_manifest(path: &Path) -> Result<DocumentMut, String> {
3233
let content = std::fs::read_to_string(path)
3334
.map_err(|e| format!("Failed to read {}: {e}", path.display()))?;

0 commit comments

Comments
 (0)