Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p align="center"><img src="./doc/roakey.png" width="150"></p>
<p align="center"><img src="https://raw.githubusercontent.com/Azure/PyRIT/releases/v0.12.0/doc/roakey.png" width="150"></p>

# Python Risk Identification Tool for generative AI (PyRIT)

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pyrit-frontend",
"version": "0.11.1-dev.0",
"version": "0.12.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion pyrit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading