From e86e0e117c560787f99bb05a72ab449ca2afca81 Mon Sep 17 00:00:00 2001 From: Varun Joginpalli Date: Thu, 26 Mar 2026 19:39:10 +0000 Subject: [PATCH] v0.12.0 release update version --- README.md | 2 +- frontend/package.json | 2 +- pyproject.toml | 2 +- pyrit/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5da4eed97a..214cbaebeb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

+

# Python Risk Identification Tool for generative AI (PyRIT) diff --git a/frontend/package.json b/frontend/package.json index 3f0785d4f3..255acc58cb 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "pyrit-frontend", - "version": "0.11.1-dev.0", + "version": "0.12.0", "private": true, "type": "module", "scripts": { diff --git a/pyproject.toml b/pyproject.toml index c63b6f1699..95ac03db11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyrit" -version = "0.11.1.dev0" +version = "0.12.0" description = "The Python Risk Identification Tool for LLMs (PyRIT) is a library used to assess the robustness of LLMs" authors = [ { name = "Microsoft AI Red Team", email = "airedteam@microsoft.com" }, diff --git a/pyrit/__init__.py b/pyrit/__init__.py index 53d8af57aa..2bf826aba5 100644 --- a/pyrit/__init__.py +++ b/pyrit/__init__.py @@ -6,7 +6,7 @@ # NOTE: __version__ must be set before imports below to avoid circular import issues. # Submodules (e.g., component_identifier, memory_models) reference pyrit.__version__ # and get imported transitively during the .common import chain. -__version__ = "0.11.1.dev0" +__version__ = "0.12.0" from .common import turn_off_transformers_warning # noqa: F401 from .show_versions import show_versions # noqa: F401