Skip to content

Commit 95b15a5

Browse files
committed
bump version; add contributors
Signed-off-by: Jeffrey Martin <[email protected]>
1 parent 27d4554 commit 95b15a5

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

docs/source/cliref.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CLI reference for garak
33

44
::
55

6-
garak LLM vulnerability scanner v0.10.2 ( https://github.com/NVIDIA/garak ) at 2025-01-30T13:10:51.281653
6+
garak LLM vulnerability scanner v0.10.3 ( https://github.com/NVIDIA/garak ) at 2025-03-03T13:10:08.326398
77
usage: python -m garak [-h] [--verbose] [--report_prefix REPORT_PREFIX]
88
[--narrow_output]
99
[--parallel_requests PARALLEL_REQUESTS]

docs/source/garak.generators.rest.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Uses the following options from ``_config.plugins.generators["rest.RestGenerator
1212
* ``req_template_json_object`` - (optional) the request template as a Python object, to be serialised as a JSON string before replacements
1313
* ``method`` - a string describing the HTTP method, to be passed to the requests module; default "post".
1414
* ``headers`` - dict describing HTTP headers to be sent with the request
15-
* ``proxies`` - dict passed to ``requests`` method call. See `required format<https://requests.readthedocs.io/en/latest/user/advanced/#proxies">`_.
15+
* ``proxies`` - dict passed to ``requests`` method call. See `required format <https://requests.readthedocs.io/en/latest/user/advanced/#proxies>`_.
1616
* ``response_json`` - Is the response in JSON format? (bool)
1717
* ``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 ``$``.
1818
* ``request_timeout`` - How many seconds should we wait before timing out? Default 20

garak/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Top-level package for garak"""
22

3-
__version__ = "0.10.2.post1"
3+
__version__ = "0.10.3"
44
__app__ = "garak"
55
__description__ = "LLM vulnerability scanner"

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "garak"
7-
version = "0.10.2.post1"
7+
version = "0.10.3"
88
authors = [
99
{ name = "Leon Derczynski", email="[email protected]" },
1010
{ name = "Subho Majumdar", email="[email protected]" },
@@ -37,6 +37,9 @@ authors = [
3737
{ name = "Eric Hacker" },
3838
{ name = "Blessed Uyo" },
3939
{ name = "Ikko Eltociear Ashimine" },
40+
{ name = "iamnotcj" },
41+
{ name = "Dwight Temple" },
42+
{ name = "Shane Rosse" },
4043
]
4144
license = { file = "LICENSE" }
4245
description = "LLM vulnerability scanner"

0 commit comments

Comments
 (0)