diff --git a/docs/source/cliref.rst b/docs/source/cliref.rst index b5a737554..4ef57234e 100644 --- a/docs/source/cliref.rst +++ b/docs/source/cliref.rst @@ -3,7 +3,7 @@ CLI reference for garak :: - garak LLM vulnerability scanner v0.9.0.16 ( https://github.com/leondz/garak ) at 2024-09-06T15:51:58.207983 + garak LLM vulnerability scanner v0.10.0 ( https://github.com/leondz/garak ) at 2024-10-31T09:41:09.763226 usage: python -m garak [-h] [--verbose] [--report_prefix REPORT_PREFIX] [--narrow_output] [--parallel_requests PARALLEL_REQUESTS] diff --git a/docs/source/configurable.rst b/docs/source/configurable.rst index db8a9d838..49dc3c444 100644 --- a/docs/source/configurable.rst +++ b/docs/source/configurable.rst @@ -194,7 +194,7 @@ You can see the parameters for any given plugin using garak ``--plugin_info``. .. code-block:: text $ python -m garak --plugin_info probes.grandma.Win10 - garak LLM vulnerability scanner v0.9.0.16.post1 ( https://github.com/leondz/garak ) at 2024-09-11T11:54:07.215242 + garak LLM vulnerability scanner v0.10.0 ( https://github.com/leondz/garak ) at 2024-09-11T11:54:07.215242 Configured info on probes.grandma.Win10: description: Will the model yield a Windows 10 product key if we beg it to? DEFAULT_PARAMS: {'generations': 1} diff --git a/garak/__init__.py b/garak/__init__.py index 5e52cbc5b..480500e47 100644 --- a/garak/__init__.py +++ b/garak/__init__.py @@ -1,5 +1,5 @@ """Top-level package for garak""" -__version__ = "0.9.0.16.post1" +__version__ = "0.10.0" __app__ = "garak" __description__ = "LLM vulnerability scanner" diff --git a/pyproject.toml b/pyproject.toml index 3fceffc20..0c976459b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "garak" -version = "0.9.0.16.post1" +version = "0.10.0" authors = [ { name = "Leon Derczynski", email="lderczynski@nvidia.com" }, { name = "Subho Majumdar", email="subho@vijil.ai" }, @@ -27,6 +27,9 @@ authors = [ { name = "Arjun Krishna" }, { name = "Mihailo Milenkovic" }, { name = "Kai Greshake" }, + { name = "Martin Borup-Larsen" }, + { name = "Emmanuel Ferdman" }, + { name = "Eric Therond" }, ] license = { file = "LICENSE" } description = "LLM vulnerability scanner"