diff --git a/.github/docs-versions.yml b/.github/docs-versions.yml index 1cc43ec8bf..d952faa710 100644 --- a/.github/docs-versions.yml +++ b/.github/docs-versions.yml @@ -8,13 +8,16 @@ # To add a new release version: append an entry under `versions:`, and update # `default:` / `stable:` if the new release should become the landing page. -default: "0.13.0" # served at the site root (microsoft.github.io/PyRIT/) -stable: "0.13.0" # served at /stable/ and shown as "(stable)" in the picker +default: "0.14.0" # served at the site root (microsoft.github.io/PyRIT/) +stable: "0.14.0" # served at /stable/ and shown as "(stable)" in the picker versions: - slug: latest name: "latest (dev, main)" ref: main + - slug: "0.14.0" + name: "0.14.0" + ref: releases/v0.14.0 - slug: "0.13.0" name: "0.13.0" ref: releases/v0.13.0 diff --git a/frontend/package.json b/frontend/package.json index befe2850ce..af278c6dcb 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "pyrit-frontend", - "version": "0.14.0-dev.0", + "version": "0.15.0-dev.0", "private": true, "type": "module", "scripts": { diff --git a/pyproject.toml b/pyproject.toml index ee6ef1b728..5dfa8305e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyrit" -version = "0.14.0.dev0" +version = "0.15.0.dev0" 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 6cb2fff9c2..8faeac32f7 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.14.0.dev0" +__version__ = "0.15.0.dev0" from .common import turn_off_transformers_warning # noqa: F401 from .show_versions import show_versions # noqa: F401