From b25caa8311db4fb23600575e2e5559bd36e09d65 Mon Sep 17 00:00:00 2001 From: rdheekonda Date: Thu, 22 Aug 2024 13:52:56 -0700 Subject: [PATCH] release v0.4.0 --- README.md | 10 +++++----- pyproject.toml | 2 +- pyrit/__init__.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5ef2bbca9..969907f44 100644 --- a/README.md +++ b/README.md @@ -28,17 +28,17 @@ For example, at Microsoft we are using this tool to iterate on different versions of a product (and its metaprompt) so that we can more effectively protect against prompt injection attacks. -![PyRIT architecture](https://github.com/Azure/PyRIT/blob/main/assets/pyrit_architecture.png) +![PyRIT architecture](https://raw.githubusercontent.com/Azure/PyRIT/releases/v0.4.0/assets/pyrit_architecture.png) ## Where can I learn more? Microsoft Learn has a [dedicated page on AI Red Teaming](https://learn.microsoft.com/en-us/security/ai-red-team). -Check out our [docs](https://github.com/Azure/PyRIT/blob/main/doc/README.md) for more information -on how to [install PyRIT](https://github.com/Azure/PyRIT/blob/main/doc/setup/install_pyrit.md), -our [How to Guide](https://github.com/Azure/PyRIT/blob/main/doc/how_to_guide.ipynb), -and more, as well as our [demos](https://github.com/Azure/PyRIT/tree/main/doc/code). +Check out our [docs](https://github.com/Azure/PyRIT/releases/v0.4.0/doc/README.md) for more information +on how to [install PyRIT](https://github.com/Azure/PyRIT/releases/v0.4.0/doc/setup/install_pyrit.md), +our [How to Guide](https://github.com/Azure/PyRIT/releases/v0.4.0/doc/how_to_guide.ipynb), +and more, as well as our [demos](https://github.com/Azure/PyRIT/tree/releases/v0.4.0/doc/code). ## Trademarks diff --git a/pyproject.toml b/pyproject.toml index 3d6ad526c..6e6d38ef6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyrit" -version = "0.3.1.dev0" +version = "0.4.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 7130fbcd3..2b94f14cb 100644 --- a/pyrit/__init__.py +++ b/pyrit/__init__.py @@ -6,4 +6,4 @@ __name__ = "pyrit" # Remove dev suffix when releasing and keep in sync with pyproject.toml -__version__ = "0.3.1.dev0" +__version__ = "0.4.0"