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.
Files changed (25) hide show
  1. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/CHANGELOG.md +16 -0
  2. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/PKG-INFO +10 -1
  3. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/README.md +9 -0
  4. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/pyproject.toml +1 -1
  5. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/__init__.py +1 -1
  6. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/.gitignore +0 -0
  7. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/LICENSE +0 -0
  8. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/examples/quickstart/README.md +0 -0
  9. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/examples/regression-tour/README.md +0 -0
  10. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/__init__.py +0 -0
  11. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/anthropic.py +0 -0
  12. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/openai.py +0 -0
  13. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/adapters/pricing.py +0 -0
  14. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/cli.py +0 -0
  15. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/core.py +0 -0
  16. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/differ.py +0 -0
  17. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/filtering.py +0 -0
  18. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/graders/__init__.py +0 -0
  19. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/graders/deterministic.py +0 -0
  20. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/graders/semantic.py +0 -0
  21. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/loader.py +0 -0
  22. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/reporters.py +0 -0
  23. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/runner.py +0 -0
  24. {agentprdiff-0.2.4 → agentprdiff-0.2.5}/src/agentprdiff/scaffold.py +0 -0
  25. {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.4
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
  [![CI](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml/badge.svg)](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
54
63
  [![PyPI](https://img.shields.io/pypi/v/agentprdiff.svg)](https://pypi.org/project/agentprdiff/)
55
64
  [![Python](https://img.shields.io/pypi/pyversions/agentprdiff.svg)](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
  [![CI](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml/badge.svg)](https://github.com/vnageshwaran-de/agentprdiff/actions/workflows/ci.yml)
14
23
  [![PyPI](https://img.shields.io/pypi/v/agentprdiff.svg)](https://pypi.org/project/agentprdiff/)
15
24
  [![Python](https://img.shields.io/pypi/pyversions/agentprdiff.svg)](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.4"
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"
@@ -67,7 +67,7 @@ from .differ import AssertionChange, TraceDelta, diff_traces
67
67
  from .runner import CaseReport, Runner, RunReport
68
68
  from .store import BaselineStore
69
69
 
70
- __version__ = "0.2.4"
70
+ __version__ = "0.2.5"
71
71
 
72
72
  __all__ = [
73
73
  # core
File without changes
File without changes