diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 88f7c73..18e45d5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.4" + ".": "0.1.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f7a75..349fdbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.5](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.4...promptfoo-v0.1.5) (2026-05-24) + + +### Bug Fixes + +* address telemetry and environment quality findings ([#50](https://github.com/promptfoo/promptfoo-python/issues/50)) ([9fd19f6](https://github.com/promptfoo/promptfoo-python/commit/9fd19f6426c769bfa57a24a8ad9bc2d8d686d9a0)) +* resolve environment test quality findings ([#45](https://github.com/promptfoo/promptfoo-python/issues/45)) ([879bb2a](https://github.com/promptfoo/promptfoo-python/commit/879bb2ab530ef2a0b23f4773d8e32800b86d047e)) + ## [0.1.4](https://github.com/promptfoo/promptfoo-python/compare/promptfoo-v0.1.3...promptfoo-v0.1.4) (2026-04-04) diff --git a/pyproject.toml b/pyproject.toml index ba39e2b..f1ec47f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "promptfoo" -version = "0.1.4" +version = "0.1.5" 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 4c45ad8..ae00801 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.4" +__version__ = "0.1.5" __all__ = ["__version__", "main"] from .cli import main