From b0071e29b5913d839d1a407b9d56982fc1fcf008 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Jan 2026 10:15:33 +0000 Subject: [PATCH] chore(main): release promptfoo 0.1.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- src/promptfoo/__init__.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..001eb2c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 459da4c..7d2cb84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.2](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.1...promptfoo-v0.1.2) (2026-01-11) + + +### Features + +* add comprehensive environment detection for better Node.js installation guidance ([#12](https://github.com/promptfoo/promptfoo-python/issues/12)) ([4334a67](https://github.com/promptfoo/promptfoo-python/commit/4334a6720edf28404df273ac767ffbb1688f611b)) +* add comprehensive type checking with mypy strict mode and pyright ([#20](https://github.com/promptfoo/promptfoo-python/issues/20)) ([8b10925](https://github.com/promptfoo/promptfoo-python/commit/8b1092581b2d1b30799fec021e5b4a30b9f4e79d)) +* add PostHog telemetry for wrapper usage tracking ([#19](https://github.com/promptfoo/promptfoo-python/issues/19)) ([80b5c67](https://github.com/promptfoo/promptfoo-python/commit/80b5c6780eabccad428d2db82934b898135527e4)) +* add smoke tests for CLI integration testing ([#14](https://github.com/promptfoo/promptfoo-python/issues/14)) ([8e653c4](https://github.com/promptfoo/promptfoo-python/commit/8e653c44bee6a18ef329420eb77658811b67eea1)) + ## [0.1.1](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.0...promptfoo-v0.1.1) (2026-01-06) diff --git a/pyproject.toml b/pyproject.toml index 814cf18..73e8970 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "promptfoo" -version = "0.1.1" +version = "0.1.2" 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 a0be127..535b814 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.1" +__version__ = "0.1.2" __all__ = ["__version__", "main"] from .cli import main