agentprdiff 0.2.4__tar.gz → 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/CHANGELOG.md +16 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/PKG-INFO +10 -1
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/README.md +9 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/pyproject.toml +1 -1
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/__init__.py +1 -1
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/.gitignore +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/LICENSE +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/examples/quickstart/README.md +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/examples/regression-tour/README.md +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/__init__.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/anthropic.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/openai.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/pricing.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/cli.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/core.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/differ.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/filtering.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/graders/__init__.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/graders/deterministic.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/graders/semantic.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/loader.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/reporters.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/runner.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/scaffold.py +0 -0
- {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/store.py +0 -0
|
@@ -8,6 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.5] — 2026-04-30
|
|
12
|
+
|
|
13
|
+
Infrastructure-only release. Code is identical to 0.2.4 — this exists
|
|
14
|
+
solely to publish via PyPI's Trusted Publishing flow (OIDC from GitHub
|
|
15
|
+
Actions) so the project page shows verified details for the source
|
|
16
|
+
repository. No API token is used to upload this release.
|
|
17
|
+
|
|
18
|
+
### Internal
|
|
19
|
+
|
|
20
|
+
- Added `.github/workflows/release.yml` that builds sdist + wheel and
|
|
21
|
+
publishes via `pypa/gh-action-pypi-publish` with OIDC. Triggered on
|
|
22
|
+
GitHub `release: published` and `workflow_dispatch`. Uses the `pypi`
|
|
23
|
+
GitHub environment for tag-restricted deploys (`v*`).
|
|
24
|
+
- First release published through the configured PyPI Trusted Publisher
|
|
25
|
+
for `vnageshwaran-de/agentprdiff` → `release.yml` → `pypi` env.
|
|
26
|
+
|
|
11
27
|
## [0.2.4] — 2026-04-29
|
|
12
28
|
|
|
13
29
|
Metadata-only release. Code is identical to 0.2.3 — this exists solely
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentprdiff
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Guard your LLM agents in CI. Snapshot tests that catch behavioral regressions when models, prompts, or vendors change.
|
|
5
5
|
Project-URL: Homepage, https://agentprdiff.dev
|
|
6
6
|
Project-URL: Documentation, https://agentprdiff.dev
|
|
@@ -50,6 +50,15 @@ Description-Content-Type: text/markdown
|
|
|
50
50
|
pip install agentprdiff
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
> **Don't have Python 3.10+ yet?** Step-by-step install instructions for
|
|
54
|
+
> [macOS, Windows, and Linux](https://agentprdiff.dev/installation/#install-python-310-first-if-you-dont-have-it).
|
|
55
|
+
>
|
|
56
|
+
> **Multiple Python versions on your machine?** If `pip install` reports
|
|
57
|
+
> `No matching distribution found` even after installing Python 3.10+,
|
|
58
|
+
> use `python3.12 -m pip install agentprdiff` (substitute your installed
|
|
59
|
+
> 3.10+ binary). Sidesteps `$PATH` confusion when Homebrew's Python and
|
|
60
|
+
> the system Python coexist. Full troubleshooting: [Installation guide](https://agentprdiff.dev/installation/).
|
|
61
|
+
|
|
53
62
|
[](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
|
|
54
63
|
[](https://pypi.org/project/agentprdiff/)
|
|
55
64
|
[](https://pypi.org/project/agentprdiff/)
|
|
@@ -10,6 +10,15 @@
|
|
|
10
10
|
pip install agentprdiff
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
> **Don't have Python 3.10+ yet?** Step-by-step install instructions for
|
|
14
|
+
> [macOS, Windows, and Linux](https://agentprdiff.dev/installation/#install-python-310-first-if-you-dont-have-it).
|
|
15
|
+
>
|
|
16
|
+
> **Multiple Python versions on your machine?** If `pip install` reports
|
|
17
|
+
> `No matching distribution found` even after installing Python 3.10+,
|
|
18
|
+
> use `python3.12 -m pip install agentprdiff` (substitute your installed
|
|
19
|
+
> 3.10+ binary). Sidesteps `$PATH` confusion when Homebrew's Python and
|
|
20
|
+
> the system Python coexist. Full troubleshooting: [Installation guide](https://agentprdiff.dev/installation/).
|
|
21
|
+
|
|
13
22
|
[](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
|
|
14
23
|
[](https://pypi.org/project/agentprdiff/)
|
|
15
24
|
[](https://pypi.org/project/agentprdiff/)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentprdiff"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.5"
|
|
8
8
|
description = "Guard your LLM agents in CI. Snapshot tests that catch behavioral regressions when models, prompts, or vendors change."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|