Skip to content

Commit 0ef2e1a

Browse files
chore(main): release promptfoo 0.1.4
1 parent 5e5a931 commit 0ef2e1a

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-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.3"
2+
".": "0.1.4"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.4](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.3...promptfoo-v0.1.4) (2026-04-02)
9+
10+
11+
### Bug Fixes
12+
13+
* checkout release tag in build job and add manual re-publish trigger ([#30](https://github.com/promptfoo/promptfoo-python/issues/30)) ([5e0bd39](https://github.com/promptfoo/promptfoo-python/commit/5e0bd395e15d2f7b10512ead4fdcf6920847dcd0))
14+
* normalize Windows subprocess exit statuses ([#35](https://github.com/promptfoo/promptfoo-python/issues/35)) ([5e5a931](https://github.com/promptfoo/promptfoo-python/commit/5e5a931a0ec37fb1bb7cdd2dfea1674982ebb7d9))
15+
16+
17+
### Documentation
18+
19+
* add CONTRIBUTING, CODE_OF_CONDUCT, and SECURITY files ([#32](https://github.com/promptfoo/promptfoo-python/issues/32)) ([414c2d5](https://github.com/promptfoo/promptfoo-python/commit/414c2d596e45bc9846e83796a66f81982c164cb5))
20+
821
## [0.1.3](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.2...promptfoo-v0.1.3) (2026-02-24)
922

1023

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.3"
7+
version = "0.1.4"
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.1.3"
15+
__version__ = "0.1.4"
1616
__all__ = ["__version__", "main"]
1717

1818
from .cli import main

0 commit comments

Comments
 (0)