From 9b611ba0a32f010e2c7bcc8b49b6fcad1723e857 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 03:29:31 +0000 Subject: [PATCH] chore(main): release promptfoo 0.1.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- src/promptfoo/__init__.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c05df9b..88f7c73 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.3" + ".": "0.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e018f47..b6218ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.4](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.3...promptfoo-v0.1.4) (2026-02-27) + + +### Bug Fixes + +* 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)) + + +### Documentation + +* 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)) + ## [0.1.3](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.2...promptfoo-v0.1.3) (2026-02-24) diff --git a/pyproject.toml b/pyproject.toml index afdbf4d..85f5925 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "promptfoo" -version = "0.1.3" +version = "0.1.4" description = "Python wrapper for the promptfoo CLI - LLM testing, red teaming, and security evaluation" authors = [ { name = "Ian Webster", email = "ian@promptfoo.dev" }, diff --git a/src/promptfoo/__init__.py b/src/promptfoo/__init__.py index 039448f..4c45ad8 100644 --- a/src/promptfoo/__init__.py +++ b/src/promptfoo/__init__.py @@ -12,7 +12,7 @@ For full documentation, visit: https://www.promptfoo.dev/docs """ -__version__ = "0.1.3" +__version__ = "0.1.4" __all__ = ["__version__", "main"] from .cli import main