Skip to content

Commit f7af17d

Browse files
committed
chore(release): bump version to 0.0.4
1 parent bf57e4d commit f7af17d

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/ci-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ The `--format json` output follows this structure:
243243
```json
244244
{
245245
"run_info": {
246-
"tool_version": "0.0.3",
246+
"tool_version": "0.0.4",
247247
"timestamp": "2025-01-22T12:00:00+00:00",
248248
"commit": "abc1234",
249249
"branch": "main"

pacta/cli/_engine_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def run_engine_scan(
9595
metadata={},
9696
)
9797

98-
builder = DefaultReportBuilder(tool="pacta", version=tool_version or "0.0.3")
98+
builder = DefaultReportBuilder(tool="pacta", version=tool_version or "0.0.4")
9999

100100
if isinstance(res, Mapping):
101101
violations = res.get("violations", ())

pacta/reporting/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class DefaultReportBuilder:
6969
- Summary counts
7070
"""
7171

72-
def __init__(self, *, tool: str = "pacta", version: str = "0.0.3") -> None:
72+
def __init__(self, *, tool: str = "pacta", version: str = "0.0.4") -> None:
7373
self._tool = tool
7474
self._version = version
7575

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pacta"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
description = "A Python tool for enforcing and visualizing software architecture."
55
readme = "README.md"
66
requires-python = ">=3.10"

tests/cli/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def create_test_report(repo_root, violations=None, engine_errors=None, **overrid
3636

3737
return Report(
3838
tool="pacta",
39-
version="0.0.3",
39+
version="0.0.4",
4040
run=RunInfo(
4141
repo_root=str(repo_root),
4242
commit=None,
@@ -46,7 +46,7 @@ def create_test_report(repo_root, violations=None, engine_errors=None, **overrid
4646
baseline_ref=overrides.get("baseline_ref"),
4747
mode=overrides.get("mode", "full"),
4848
created_at=None,
49-
tool_version="0.0.3",
49+
tool_version="0.0.4",
5050
metadata={},
5151
),
5252
summary=summary,

uv.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.

0 commit comments

Comments
 (0)