Skip to content

Commit 261ea13

Browse files
committed
chore: bump to 0.1.4
1 parent 1f6ec8d commit 261ea13

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exclude = ["test_app"]
99

1010
[package]
1111
name = "cargo_pup"
12-
version = "0.1.3"
12+
version = "0.1.4"
1313
edition = "2024"
1414
description = "A Rust architectural linting tool that integrates with rustc to enforce architectural patterns and boundaries"
1515
license = "Apache-2.0"
@@ -34,9 +34,9 @@ anyhow = { workspace = true }
3434
tempfile = { workspace = true }
3535
ron = { workspace = true }
3636
cargo_metadata = { workspace = true }
37-
cargo_pup_common = { path = "cargo_pup_common", version = "=0.1.3" }
38-
cargo_pup_lint_impl = { path = "cargo_pup_lint_impl", version = "=0.1.3" }
39-
cargo_pup_lint_config = { path = "cargo_pup_lint_config", version = "=0.1.3" }
37+
cargo_pup_common = { path = "cargo_pup_common", version = "=0.1.4" }
38+
cargo_pup_lint_impl = { path = "cargo_pup_lint_impl", version = "=0.1.4" }
39+
cargo_pup_lint_config = { path = "cargo_pup_lint_config", version = "=0.1.4" }
4040

4141
#
4242
# These bits are just to keep rust rover happy.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ First, add the following to your `Cargo.toml`:
121121
122122
```toml
123123
[dev-dependencies]
124-
cargo_pup_lint_config = "0.1.3"
124+
cargo_pup_lint_config = "0.1.4"
125125
```
126126
127127
## Examples

cargo_pup_common/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_pup_common"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
description = "Common utilities and shared components for cargo-pup architectural linting tool"
66
license = "Apache-2.0"

cargo_pup_lint_config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo_pup_lint_config"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
description = "Configuration and rule builder utilities for cargo-pup architectural linting"
66
license = "Apache-2.0"
@@ -13,4 +13,4 @@ serde.workspace = true
1313
ron.workspace = true
1414
tempfile.workspace = true
1515
anyhow.workspace = true
16-
cargo_pup_common = { path = "../cargo_pup_common", version = "=0.1.3" }
16+
cargo_pup_common = { path = "../cargo_pup_common", version = "=0.1.4" }

cargo_pup_lint_config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add this to your `Cargo.toml`:
2424

2525
```toml
2626
[dev-dependencies]
27-
cargo_pup_lint_config = "0.1.3"
27+
cargo_pup_lint_config = "0.1.4"
2828
```
2929

3030
## Example

cargo_pup_lint_impl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo_pup_lint_impl"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
description = "Core lint implementations and rustc integration for cargo-pup architectural linting"
66
license = "Apache-2.0"
@@ -9,8 +9,8 @@ homepage = "https://github.com/datadog/cargo-pup"
99
readme = "README.md"
1010

1111
[dependencies]
12-
cargo_pup_lint_config = { path = "../cargo_pup_lint_config", version = "=0.1.3" }
13-
cargo_pup_common = { path = "../cargo_pup_common", version = "=0.1.3" }
12+
cargo_pup_lint_config = { path = "../cargo_pup_lint_config", version = "=0.1.4" }
13+
cargo_pup_common = { path = "../cargo_pup_common", version = "=0.1.4" }
1414
anyhow.workspace = true
1515
regex.workspace = true
1616
serde_json.workspace = true

0 commit comments

Comments
 (0)