Skip to content

Commit 888fb1f

Browse files
chore(main): release promptfoo 0.1.1 (#10)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a6037ff commit 888fb1f

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.1.1"
33
}

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.1](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.0...promptfoo-v0.1.1) (2026-01-06)
9+
10+
11+
### Features
12+
13+
* initial release of working Python wrapper ([3549052](https://github.com/promptfoo/promptfoo-python/commit/354905248a38665c8ee6cbd398f6559b036025a6))
14+
15+
16+
### Bug Fixes
17+
18+
* configure release-please for initial 0.2.0 release ([#7](https://github.com/promptfoo/promptfoo-python/issues/7)) ([d5c95f9](https://github.com/promptfoo/promptfoo-python/commit/d5c95f9399e037d5046b3b3ce3bf527c58cc33b1))
19+
* correct detection of wrapper shim on Windows/venv ([#5](https://github.com/promptfoo/promptfoo-python/issues/5)) ([79fbc2a](https://github.com/promptfoo/promptfoo-python/commit/79fbc2aac2abab84c143a6d591e730f053c54284))
20+
* resolve CI failures in test workflow ([958cf01](https://github.com/promptfoo/promptfoo-python/commit/958cf013df6d7869041e037536b7a516fc0b5b46))
21+
* use full npx path for Windows compatibility ([#4](https://github.com/promptfoo/promptfoo-python/issues/4)) ([ced6a8d](https://github.com/promptfoo/promptfoo-python/commit/ced6a8d3167a26af3fd8bbc76015199aefef636a))
22+
23+
24+
### Documentation
25+
26+
* add comprehensive agent documentation ([#8](https://github.com/promptfoo/promptfoo-python/issues/8)) ([a6037ff](https://github.com/promptfoo/promptfoo-python/commit/a6037ff57c6bd7093f5b531456ead0cd0ab22dbd))
27+
828
## [Unreleased]
929

1030
## [0.2.0] - 2026-01-05

pyproject.toml

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

55
[project]
66
name = "promptfoo"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Python wrapper for the promptfoo CLI - LLM testing, red teaming, and security evaluation"
99
authors = [
1010
{ name = "Ian Webster", email = "ian@promptfoo.dev" },

src/promptfoo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
For full documentation, visit: https://www.promptfoo.dev/docs
1313
"""
1414

15-
__version__ = "0.2.0"
15+
__version__ = "0.1.1"
1616
__all__ = ["__version__", "main"]
1717

1818
from .cli import main

0 commit comments

Comments
 (0)