Skip to content

Commit

Permalink
bump version; add contributors
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Martin <jemartin@nvidia.com>
  • Loading branch information
jmartin-tech committed Mar 3, 2025
1 parent 27d4554 commit 95b15a5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/cliref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CLI reference for garak

::

garak LLM vulnerability scanner v0.10.2 ( https://github.com/NVIDIA/garak ) at 2025-01-30T13:10:51.281653
garak LLM vulnerability scanner v0.10.3 ( https://github.com/NVIDIA/garak ) at 2025-03-03T13:10:08.326398
usage: python -m garak [-h] [--verbose] [--report_prefix REPORT_PREFIX]
[--narrow_output]
[--parallel_requests PARALLEL_REQUESTS]
Expand Down
2 changes: 1 addition & 1 deletion docs/source/garak.generators.rest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Uses the following options from ``_config.plugins.generators["rest.RestGenerator
* ``req_template_json_object`` - (optional) the request template as a Python object, to be serialised as a JSON string before replacements
* ``method`` - a string describing the HTTP method, to be passed to the requests module; default "post".
* ``headers`` - dict describing HTTP headers to be sent with the request
* ``proxies`` - dict passed to ``requests`` method call. See `required format<https://requests.readthedocs.io/en/latest/user/advanced/#proxies">`_.
* ``proxies`` - dict passed to ``requests`` method call. See `required format <https://requests.readthedocs.io/en/latest/user/advanced/#proxies>`_.
* ``response_json`` - Is the response in JSON format? (bool)
* ``response_json_field`` - (optional) Which field of the response JSON should be used as the output string? Default ``text``. Can also be a JSONPath value, and ``response_json_field`` is used as such if it starts with ``$``.
* ``request_timeout`` - How many seconds should we wait before timing out? Default 20
Expand Down
2 changes: 1 addition & 1 deletion garak/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Top-level package for garak"""

__version__ = "0.10.2.post1"
__version__ = "0.10.3"
__app__ = "garak"
__description__ = "LLM vulnerability scanner"
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "garak"
version = "0.10.2.post1"
version = "0.10.3"
authors = [
{ name = "Leon Derczynski", email="lderczynski@nvidia.com" },
{ name = "Subho Majumdar", email="subho@vijil.ai" },
Expand Down Expand Up @@ -37,6 +37,9 @@ authors = [
{ name = "Eric Hacker" },
{ name = "Blessed Uyo" },
{ name = "Ikko Eltociear Ashimine" },
{ name = "iamnotcj" },
{ name = "Dwight Temple" },
{ name = "Shane Rosse" },
]
license = { file = "LICENSE" }
description = "LLM vulnerability scanner"
Expand Down

0 comments on commit 95b15a5

Please sign in to comment.