Skip to content

Commit 1011e6c

Browse files
author
Victor Valbuena
committed
release v0.14.0
1 parent c618c2a commit 1011e6c

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p align="center"><img src="./doc/roakey.png" width="150"></p>
1+
<p align="center"><img src="https://raw.githubusercontent.com/microsoft/PyRIT/releases/v0.14.0/doc/roakey.png" width="150"></p>
22

33
# Python Risk Identification Tool for generative AI (PyRIT)
44

@@ -20,4 +20,4 @@ not cause confusion or imply Microsoft sponsorship.
2020
Any use of third-party trademarks or logos are subject to those third-party's
2121
policies.
2222

23-
If you use PyRIT in your research, please cite the tool itself following the [`CITATION.cff`](./CITATION.cff) file in the root of this repository.
23+
If you use PyRIT in your research, please cite the tool itself following the [`CITATION.cff`](https://raw.githubusercontent.com/microsoft/PyRIT/releases/v0.14.0/CITATION.cff) file in the root of this repository.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pyrit-frontend",
3-
"version": "0.14.0-dev.0",
3+
"version": "0.14.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyrit"
3-
version = "0.14.0.dev0"
3+
version = "0.14.0"
44
description = "The Python Risk Identification Tool for LLMs (PyRIT) is a library used to assess the robustness of LLMs"
55
authors = [
66
{ name = "Microsoft AI Red Team", email = "airedteam@microsoft.com" },

pyrit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# NOTE: __version__ must be set before imports below to avoid circular import issues.
77
# Submodules (e.g., component_identifier, memory_models) reference pyrit.__version__
88
# and get imported transitively during the .common import chain.
9-
__version__ = "0.14.0.dev0"
9+
__version__ = "0.14.0"
1010

1111
from .common import turn_off_transformers_warning # noqa: F401
1212
from .show_versions import show_versions # noqa: F401

0 commit comments

Comments
 (0)