Skip to content

Commit 9970ddb

Browse files
amitpaz1claude
andcommitted
chore: bump version to 0.5.0 and add PyPI publish workflow
30 improvements across security, performance, UI/UX, code quality, code improvements, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9ff571a commit 9970ddb

3 files changed

Lines changed: 23 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish to PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
id-token: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.12'
18+
- run: pip install build
19+
- run: python -m build
20+
- name: Publish to PyPI
21+
uses: pypa/gh-action-pypi-publish@release/v1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentevalkit"
7-
version = "0.4.0"
7+
version = "0.5.0"
88
description = "Testing and evaluation framework for AI agents"
99
readme = "README.md"
1010
license = {text = "MIT"}

src/agenteval/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""AgentEval — Testing and evaluation framework for AI agents."""
22

3-
__version__ = "0.4.0"
3+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)