Skip to content

Commit 2e25d4a

Browse files
authored
Merge pull request #19 from pacta-dev/chore/new-org
chore: update project links to new pacta-dev/pacta-cli repository
2 parents 9a6afaa + 3b6051e commit 2e25d4a

10 files changed

Lines changed: 27 additions & 26 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,4 @@ pyrightconfig.json
197197
.pacta/
198198
.vscode/
199199
uv.toml
200+
.DS_Store

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9999

100100
## [0.0.1] - 2026-01-23
101101

102-
[0.0.6]: https://github.com/akhundMurad/pacta/compare/v0.0.5...v0.0.6
103-
[0.0.5]: https://github.com/akhundMurad/pacta/compare/v0.0.4...v0.0.5
104-
[0.0.4]: https://github.com/akhundMurad/pacta/compare/v0.0.3...v0.0.4
105-
[0.0.3]: https://github.com/akhundMurad/pacta/compare/v0.0.2...v0.0.3
106-
[0.0.2]: https://github.com/akhundMurad/pacta/compare/v0.0.1...v0.0.2
102+
[0.0.6]: https://github.com/pacta-dev/pacta-cli/compare/v0.0.5...v0.0.6
103+
[0.0.5]: https://github.com/pacta-dev/pacta-cli/compare/v0.0.4...v0.0.5
104+
[0.0.4]: https://github.com/pacta-dev/pacta-cli/compare/v0.0.3...v0.0.4
105+
[0.0.3]: https://github.com/pacta-dev/pacta-cli/compare/v0.0.2...v0.0.3
106+
[0.0.2]: https://github.com/pacta-dev/pacta-cli/compare/v0.0.1...v0.0.2
107107

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This project uses [uv](https://docs.astral.sh/uv/) for dependency management.
3232

3333
```bash
3434
# Clone the repository
35-
git clone https://github.com/akhundMurad/pacta.git
35+
git clone https://github.com/pacta-dev/pacta-cli.git
3636
cd pacta
3737

3838
# Install dependencies with dev tools

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<p align="center">
1010
<a href="https://pypi.org/project/pacta/">PyPI</a> •
11-
<a href="https://akhundmurad.github.io/pacta/">Docs</a> •
12-
<a href="https://github.com/akhundMurad/pacta/issues">Issues</a>
11+
<a href="https://pacta-dev.github.io/pacta-cli/">Docs</a> •
12+
<a href="https://github.com/pacta-dev/pacta-cli/issues">Issues</a>
1313
</p>
1414

1515
<p align="center">
@@ -63,13 +63,13 @@ Codebases rot. Architecture degrades through small changes no one tracks. Pacta
6363
| `git diff` | `pacta diff` — compare two snapshots |
6464
| branch protection | `rules.pacta.yml` — governance that prevents drift |
6565

66-
See the [Getting Started](https://akhundmurad.github.io/pacta/getting-started/) guide for a full walkthrough.
66+
See the [Getting Started](https://pacta-dev.github.io/pacta-cli/getting-started/) guide for a full walkthrough.
6767

6868
## Docs
6969

70-
- [CLI Reference](https://akhundmurad.github.io/pacta/cli/)
71-
- [Architecture Model](https://akhundmurad.github.io/pacta/architecture/)
72-
- [Rules DSL](https://akhundmurad.github.io/pacta/rules/)
70+
- [CLI Reference](https://pacta-dev.github.io/pacta-cli/cli/)
71+
- [Architecture Model](https://pacta-dev.github.io/pacta-cli/architecture/)
72+
- [Rules DSL](https://pacta-dev.github.io/pacta-cli/rules/)
7373

7474
## Roadmap (short)
7575

@@ -85,4 +85,4 @@ See the [Getting Started](https://akhundmurad.github.io/pacta/getting-started/)
8585

8686
## License
8787

88-
Apache-2.0. See [LICENSE](https://github.com/akhundMurad/pacta/blob/main/LICENSE).
88+
Apache-2.0. See [LICENSE](https://github.com/pacta-dev/pacta-cli/blob/main/LICENSE).

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323

2424
- **cli:** Reformat assertion for save refs call args
2525

26-
[0.0.5]: https://github.com/akhundMurad/pacta/compare/v0.0.4...v0.0.5
26+
[0.0.5]: https://github.com/pacta-dev/pacta-cli/compare/v0.0.4...v0.0.5
2727

cliff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ footer = """
3131
{% if release.version -%}
3232
{% if release.previous.version -%}
3333
[{{ release.version | trim_start_matches(pat="v") }}]: \
34-
https://github.com/akhundMurad/pacta/compare/{{ release.previous.version }}...{{ release.version }}
34+
https://github.com/pacta-dev/pacta-cli/compare/{{ release.previous.version }}...{{ release.version }}
3535
{% endif -%}
3636
{% else -%}
37-
[Unreleased]: https://github.com/akhundMurad/pacta/compare/{{ release.previous.version }}...HEAD
37+
[Unreleased]: https://github.com/pacta-dev/pacta-cli/compare/{{ release.previous.version }}...HEAD
3838
{% endif -%}
3939
{% endfor %}
4040
"""

docs/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,5 +312,5 @@ Typical performance:
312312
If you're stuck:
313313

314314
1. Check the [CLI Reference](cli.md) for command options
315-
2. Look at the [example project](https://github.com/akhundMurad/pacta/tree/main/examples/simple-layered-app)
316-
3. [Open an issue](https://github.com/akhundMurad/pacta/issues) on GitHub
315+
2. Look at the [example project](https://github.com/pacta-dev/pacta-cli/tree/main/examples/simple-layered-app)
316+
3. [Open an issue](https://github.com/pacta-dev/pacta-cli/issues) on GitHub

mkdocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
site_name: Pacta
22
site_description: Architecture Governance & Architecture-as-Code
3-
site_url: https://akhundmurad.github.io/pacta/
3+
site_url: https://pacta-dev.github.io/pacta-cli/
44

5-
repo_name: akhundMurad/pacta
6-
repo_url: https://github.com/akhundMurad/pacta
5+
repo_name: pacta-dev/pacta-cli
6+
repo_url: https://github.com/pacta-dev/pacta-cli
77

88
theme:
99
name: material

pacta/reporting/renderers/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def _render_trends(self, report: Report) -> str:
262262
def _render_footer(self, report: Report) -> str:
263263
lines: list[str] = []
264264
lines.append("---")
265-
lines.append(f"*Generated by [Pacta](https://github.com/akhundMurad/pacta) v{report.version}*")
265+
lines.append(f"*Generated by [Pacta](https://github.com/pacta-dev/pacta-cli) v{report.version}*")
266266
return "\n".join(lines)
267267

268268

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ dependencies = ["pyyaml>=6.0,<7.0"]
2828
viz = ["matplotlib>=3.8"]
2929

3030
[project.urls]
31-
Homepage = "https://github.com/akhundMurad/pacta"
32-
Documentation = "https://akhundmurad.github.io/pacta/"
33-
Repository = "https://github.com/akhundMurad/pacta"
34-
Issues = "https://github.com/akhundMurad/pacta/issues"
31+
Homepage = "https://github.com/pacta-dev/pacta-cli"
32+
Documentation = "https://pacta-dev.github.io/pacta-cli/"
33+
Repository = "https://github.com/pacta-dev/pacta-cli"
34+
Issues = "https://github.com/pacta-dev/pacta-cli/issues"
3535

3636
[dependency-groups]
3737
dev = [

0 commit comments

Comments
 (0)