agentforge-testing 0.2.3__tar.gz → 0.3.0__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.
@@ -47,3 +47,13 @@ Thumbs.db
47
47
  # Project-local
48
48
  *.local
49
49
  .agentforge-state/.session-cache
50
+
51
+ # AI-assistant working state — local session tracking, not part of
52
+ # the published project. The process docs under .claude/ (standards,
53
+ # checklists, CLAUDE.md) are intentionally kept tracked; only the
54
+ # churny per-session state files are ignored.
55
+ .claude/state/
56
+
57
+ # Launch / go-to-market drafts — local-only marketing material,
58
+ # never published to the repo.
59
+ launch/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentforge-testing
3
- Version: 0.2.3
3
+ Version: 0.3.0
4
4
  Summary: Richer test helpers for AgentForge (golden-set runner, snapshot, recording analysis)
5
5
  Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
6
6
  Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
@@ -20,8 +20,8 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
20
  Classifier: Topic :: Software Development :: Testing
21
21
  Classifier: Typing :: Typed
22
22
  Requires-Python: >=3.13
23
- Requires-Dist: agentforge-core~=0.2.3
24
- Requires-Dist: agentforge-py~=0.2.3
23
+ Requires-Dist: agentforge-core~=0.3.0
24
+ Requires-Dist: agentforge-py~=0.3.0
25
25
  Description-Content-Type: text/markdown
26
26
 
27
27
  # agentforge-testing
@@ -8,7 +8,7 @@
8
8
 
9
9
  [project]
10
10
  name = "agentforge-testing"
11
- version = "0.2.3"
11
+ version = "0.3.0"
12
12
  description = "Richer test helpers for AgentForge (golden-set runner, snapshot, recording analysis)"
13
13
  readme = "README.md"
14
14
  requires-python = ">=3.13"
@@ -30,8 +30,8 @@ classifiers = [
30
30
  ]
31
31
 
32
32
  dependencies = [
33
- "agentforge-core ~= 0.2.3",
34
- "agentforge-py ~= 0.2.3",
33
+ "agentforge-core ~= 0.3.0",
34
+ "agentforge-py ~= 0.3.0",
35
35
  ]
36
36
 
37
37
  [project.urls]